Skip to content

Commit

Permalink
doc: update code example for Windows in stream.md
Browse files Browse the repository at this point in the history
PR-URL: #13138
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
vsemozhetbyt authored and MylesBorins committed Jul 17, 2017
1 parent 079b04e commit cb03bd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const server = http.createServer( (req, res) => {
res.write(typeof data);
res.end();
} catch (er) {
// uh oh! bad json!
// uh oh! bad json!
res.statusCode = 400;
return res.end(`error: ${er.message}`);
}
Expand All @@ -143,12 +143,12 @@ const server = http.createServer( (req, res) => {

server.listen(1337);

// $ curl localhost:1337 -d '{}'
// $ curl localhost:1337 -d "{}"
// object
// $ curl localhost:1337 -d '"foo"'
// $ curl localhost:1337 -d "\"foo\""
// string
// $ curl localhost:1337 -d 'not json'
// error: Unexpected token o
// $ curl localhost:1337 -d "not json"
// error: Unexpected token o in JSON at position 1
```

[Writable][] streams (such as `res` in the example) expose methods such as
Expand Down

0 comments on commit cb03bd1

Please sign in to comment.