Skip to content

Commit

Permalink
Fix typo: Update anatomy-of-an-http-transaction.md
Browse files Browse the repository at this point in the history
Fix typo on code block type.

Signed-off-by: Shahan Arshad <68821506+sazk07@users.noreply.github.com>
  • Loading branch information
sazk07 authored Nov 5, 2024
1 parent cb43b64 commit 80a512c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ and message would be. As usual with errors, you should consult the

On the response, we'll just log the error to `stderr`.

```js
```cjs
const http = require('node:http');

http
Expand All @@ -538,7 +538,7 @@ http
.listen(8080);
```

```js
```mjs
import http from 'node:http';

http
Expand Down

0 comments on commit 80a512c

Please sign in to comment.