diff options
-rw-r--r-- | std/manual.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/manual.md b/std/manual.md index a654cfd8f..3f215c286 100644 --- a/std/manual.md +++ b/std/manual.md @@ -74,9 +74,9 @@ have been historically written with bash or python. - Uses "ES Modules" and does not support `require()`. Third party modules are imported via URLs: -```javascript -import * as log from "https://deno.land/std/log/mod.ts"; -``` + ```javascript + import * as log from "https://deno.land/std/log/mod.ts"; + ``` ### Other key behaviors |