@@ -925,8 +925,8 @@ take care of the underlying stream resource.
925925You SHOULD only use its public API and SHOULD NOT interfere with the underlying
926926stream 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
930930ready to accept data.
931931For this, it uses an in-memory buffer string to collect all outstanding writes.
932932This 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
10271027ready to accept data.
10281028For this, it uses an in-memory buffer string to collect all outstanding writes.
10291029This buffer has a soft-limit applied which defines how much data it is willing
0 commit comments