Skip to content

Commit eed852e

Browse files
authored
fix(minor): remove typo in Express example (#1906)
1 parent 49cc426 commit eed852e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

examples/tutorials/express.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,23 @@ When you initialized the project, Deno set up a task which will run the main.ts
7373
file, you can see it in the `deno.json` file. Update the `dev` task to include
7474
the [`--allow-net`](/runtime/fundamentals/security/#network-access) flag:
7575

76-
````jsonc
76+
```jsonc
7777
{
7878
"scripts": {
7979
"dev": "deno run --allow-net main.ts"
8080
},
8181
...
8282
}
83+
```
8384

84-
This will allow the project to make network requests. You can [read more about permissions flags](/runtime/fundamentals/security/).
85+
This will allow the project to make network requests. You can
86+
[read more about permissions flags](/runtime/fundamentals/security/).
8587

8688
Now you can run the server with:
8789

8890
```sh
8991
deno run dev
90-
````
92+
```
9193

9294
If you visit `localhost:8000` in your browser, you should see:
9395

0 commit comments

Comments
 (0)