Skip to content

Commit 5cd3b8d

Browse files
authored
docs: add missing backticks to introduction-to-nodejs.md (#7539)
Hello, I've added missing backticks to `introduction-to-nodejs.md`. I believe that `statusCode`, `200`, and `Content-Type` are code related values, so they must be wrapped in backticks (inline code blocks). Signed-off-by: 루밀LuMir <rpfos@naver.com>
1 parent 48847aa commit 5cd3b8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/site/pages/en/learn/getting-started/introduction-to-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ In this case with:
8383
res.statusCode = 200;
8484
```
8585

86-
we set the statusCode property to 200, to indicate a successful response.
86+
we set the `statusCode` property to `200`, to indicate a successful response.
8787

88-
We set the Content-Type header:
88+
We set the `Content-Type` header:
8989

9090
```js
9191
res.setHeader('Content-Type', 'text/plain');

0 commit comments

Comments
 (0)