Skip to content

Commit 7bcdf00

Browse files
committed
Fixed typo in migration docs
1 parent 63ea4cc commit 7bcdf00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: apps/website/docs/migration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ table to transform 0.11.x to 0.12+
3030
{"0.11.x": "await ffmpeg.run(...args)", "0.12+": "await ffmpeg.exec([...args])", note: ""},
3131
{"0.11.x": "ffmpeg.FS.writeFile()", "0.12+": "await ffmpeg.writeFile()", note: ""},
3232
{"0.11.x": "ffmpeg.FS.readFile()", "0.12+": "await ffmpeg.readFile()", note: ""},
33-
{"0.11.x": "ffmpeg.exit()", "0.12+": "await ffmpeg.terminate()", note: ""},
33+
{"0.11.x": "ffmpeg.exit()", "0.12+": "ffmpeg.terminate()", note: ""},
3434
{"0.11.x": "ffmpeg.setLogger()", "0.12+": "ffmpeg.on(\"log\", () => {})", note: ""},
3535
{"0.11.x": "ffmpeg.setProgress()", "0.12+": "ffmpeg.on(\"progress\", () => {})", note: ""},
3636
{"0.11.x": "import { fetchFile } from '@ffmpeg/ffmpeg'", "0.12+": "import { fetchFile } from '@ffmpeg/util'", note: ""},

0 commit comments

Comments
 (0)