Skip to content

Commit 007358c

Browse files
authored
Merge pull request #114 from clue-labs/typos
Fix typos in README
2 parents 13aa0e2 + 9b8d399 commit 007358c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -925,8 +925,8 @@ take care of the underlying stream resource.
925925
You SHOULD only use its public API and SHOULD NOT interfere with the underlying
926926
stream resource manually.
927927

928-
Any `write()` calls to this class will not be performaned instantly, but will
929-
be performaned asynchronously, once the EventLoop reports the stream resource is
928+
Any `write()` calls to this class will not be performed instantly, but will
929+
be performed asynchronously, once the EventLoop reports the stream resource is
930930
ready to accept data.
931931
For this, it uses an in-memory buffer string to collect all outstanding writes.
932932
This buffer has a soft-limit applied which defines how much data it is willing
@@ -1022,8 +1022,8 @@ $conn = stream_socket_client('tcp://google.com:80');
10221022
$stream = new DuplexResourceStream($conn, $loop, 8192);
10231023
```
10241024

1025-
Any `write()` calls to this class will not be performaned instantly, but will
1026-
be performaned asynchronously, once the EventLoop reports the stream resource is
1025+
Any `write()` calls to this class will not be performed instantly, but will
1026+
be performed asynchronously, once the EventLoop reports the stream resource is
10271027
ready to accept data.
10281028
For this, it uses an in-memory buffer string to collect all outstanding writes.
10291029
This buffer has a soft-limit applied which defines how much data it is willing

0 commit comments

Comments
 (0)