@@ -196,7 +196,7 @@ See also the [first example](examples).
196196The ` tcp:// ` scheme can also be omitted.
197197Passing any other scheme will reject the promise.
198198
199- Pending connection attempts can be cancelled by cancelling its pending promise like so:
199+ Pending connection attempts can be canceled by canceling its pending promise like so:
200200
201201``` php
202202$promise = $connector->connect($uri);
@@ -237,7 +237,7 @@ If you use the low-level `SecureConnector`, then the `tls://` scheme can also
237237be omitted.
238238Passing any other scheme will reject the promise.
239239
240- Pending connection attempts can be cancelled by cancelling its pending promise
240+ Pending connection attempts can be canceled by canceling its pending promise
241241as usual.
242242
243243> Also note how secure TLS connections are in fact entirely handled outside of
@@ -396,7 +396,7 @@ $connector = new React\Socket\Connector($loop, array(
396396
397397See also the [ fourth example] ( examples ) .
398398
399- Pending connection attempts can be cancelled by cancelling its pending promise
399+ Pending connection attempts can be canceled by canceling its pending promise
400400as usual.
401401
402402> Also note how local DNS resolution is in fact entirely handled outside of this
@@ -494,7 +494,7 @@ $connector->connect('tls://www.google.com:443')->then(function ($stream) {
494494
495495See also the [ third example] ( examples ) .
496496
497- Pending connection attempts can be cancelled by cancelling its pending promise
497+ Pending connection attempts can be canceled by canceling its pending promise
498498as usual.
499499
500500Proxy chaining can happen on the server side and/or the client side:
@@ -541,7 +541,7 @@ $connector->connect('tcp://google.com:80')->then(function ($stream) {
541541
542542See also any of the [ examples] ( examples ) .
543543
544- Pending connection attempts can be cancelled by cancelling its pending promise
544+ Pending connection attempts can be canceled by canceling its pending promise
545545as usual.
546546
547547> Also note how connection timeout is in fact entirely handled outside of this
0 commit comments