Skip to content

Commit

Permalink
Merge pull request #28 from danielhoward-me/dnh/fix-spelling
Browse files Browse the repository at this point in the history
Fix variable spelling
  • Loading branch information
danielnhoward authored Mar 12, 2024
2 parents 2470b95 + b848ed3 commit 3e8322b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/tools/generate-help-screenshots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ async function main() {
const totalFrameCount = Math.round(gif.fps * (gif.length/1000));

const encoder = new GIFEncoder(gif.clip.width, gif.clip.height);
const fileSteam = fs.createWriteStream(`${resolvePath(OUTPUT_DIR)}/${gif.filename}.gif`);
encoder.createReadStream().pipe(fileSteam);
const fileStream = fs.createWriteStream(`${resolvePath(OUTPUT_DIR)}/${gif.filename}.gif`);
encoder.createReadStream().pipe(fileStream);
encoder.start();
encoder.setRepeat(0);
encoder.setDelay(delta);
Expand Down

0 comments on commit 3e8322b

Please sign in to comment.