Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in documentation #34

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
ignore `JSON_THROW_ON_ERROR` option (available as of PHP 7.3).
(#14 by @clue)

* Feature: Add bechmarking script and import all global function references.
* Feature: Add benchmarking script and import all global function references.
(#16 by @clue)

* Improve documentation and add NDJSON format description and
Expand All @@ -50,7 +50,7 @@
* Feature: Limit buffer size to 64 KiB by default.
(#10 by @clue)

* Feature: Forward compatiblity with EventLoop v0.5 and upcoming v1.0.
* Feature: Forward compatibility with EventLoop v0.5 and upcoming v1.0.
(#8 by @clue)

* Fix: Return bool `false` if encoding fails due to invalid value to pause source.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ it will emit an `error` event and then `close` the input stream:

```php
$ndjson->on('error', function (Exception $error) {
// an error occured, stream will close next
// an error occurred, stream will close next
});
```

Expand Down Expand Up @@ -270,7 +270,7 @@ it will emit an `error` event and then `close` the input stream:

```php
$ndjson->on('error', function (Exception $error) {
// an error occured, stream will close next
// an error occurred, stream will close next
});
```

Expand Down