Skip to content

Commit

Permalink
doc: correct header in all docs
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjoDiaz committed May 26, 2023
1 parent e3e1a16 commit 81f7cea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Fast dependency-free library to parse a JSON stream using utf-8 encoding in Node.js, Deno or any modern browser. Fully compliant with the JSON spec and `JSON.parse(...)`.

## streamparser/json ecosystem
## @streamparser/json ecosystem

There are multiple flavours of @streamparser:

Expand Down
4 changes: 2 additions & 2 deletions packages/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ parser.on("error", err => { /* ... */ });
parser.on("end", () => { /* ... */ });
```

## streamparser/json ecosystem
## @streamparser/json ecosystem

There are multiple flavours of @streamparser:

Expand Down Expand Up @@ -152,7 +152,7 @@ Imagine an endpoint that send a large amount of JSON objects one after the other

const response = await fetch('http://example.com/');

const reader = response.body.pipeThrough(parse)getReader();
const reader = response.body.pipe(parse)getReader();

reader.on('data', ({ value, key, parent, stack }) => /* process element */)
```
Expand Down
2 changes: 1 addition & 1 deletion packages/plainjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ try {
}
```

## streamparser/json ecosystem
## @streamparser/json ecosystem

There are multiple flavours of @streamparser:

Expand Down
2 changes: 1 addition & 1 deletion packages/whatwg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ while (true) {
}
```

## streamparser/json ecosystem
## @streamparser/json ecosystem

There are multiple flavours of @streamparser:

Expand Down

0 comments on commit 81f7cea

Please sign in to comment.