Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: update code example for Windows in stream.md
  • Loading branch information
vsemozhetbyt committed May 21, 2017
commit c63b9564c673d5c209d134eba95f00106a74fc0d
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