Fix syntax highlighting

This commit is contained in:
Dávid Szabó 2021-02-18 22:23:46 +01:00 committed by GitHub
parent 1caceda0fe
commit 5add977c71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ Lets change the source code and then set a breakpoint.
Add the following code above the existing `server.use()` statement, and save the file.
```node
```js
server.use( '/foo', (req, res) => {
return res.json({ "foo": "bar" })
})