Skip to content

Commit

Permalink
doc: fix typo in migrate_deprecations.md (denoland#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
eryue0220 authored Mar 1, 2024
1 parent ab1a59a commit 9a9b40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/manual/advanced/migrate_deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ instead.

```diff
- Deno.seekSync(file.rid, 6, Deno.SeekMode.Start);
+ file.seek(6, Deno.SeekMode.Start);
+ file.seekSync(6, Deno.SeekMode.Start);
```

See [Deno 1.40 blog post][Deno 1.40 blog post] for details.
Expand Down

0 comments on commit 9a9b40f

Please sign in to comment.