Skip to content

Commit

Permalink
fix typo in code sample (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhinnery authored Feb 13, 2024
1 parent 9d1de6f commit 1708a38
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 @@ -447,7 +447,7 @@ Use [`new Deno.Command()`](https://deno.land/api?s=Deno.Command) instead.
- ]);
- process.close();
+ const command = new Deno.Command("echo", {
+ args: ["hello world]
+ args: ["hello world"]
+ });
+ const { success, stdout } = await command.output();
console.log(success);
Expand Down

0 comments on commit 1708a38

Please sign in to comment.