@@ -130,7 +130,7 @@ using the new lazy connections as detailed below.
130130 From a consumer side this means that you can start sending queries to the
131131 database right away while the underlying connection may still be
132132 outstanding. Because creating this underlying connection may take some
133- time, it will enqueue all oustanding commands and will ensure that all
133+ time, it will enqueue all outstanding commands and will ensure that all
134134 commands will be executed in correct order once the connection is ready.
135135 In other words, this "virtual" connection behaves just like a "real"
136136 connection as described in the `ConnectionInterface` and frees you from
@@ -176,7 +176,7 @@ have to take care of when updating from an older version.
176176 $connection = new Connection($loop, $options);
177177 $connection->connect(function (?Exception $error, $connection) {
178178 if ($error) {
179- // an error occured while trying to connect or authorize client
179+ // an error occurred while trying to connect or authorize client
180180 } else {
181181 // client connection established (and authenticated)
182182 }
@@ -189,7 +189,7 @@ have to take care of when updating from an older version.
189189 // client connection established (and authenticated)
190190 },
191191 function (Exception $e) {
192- // an error occured while trying to connect or authorize client
192+ // an error occurred while trying to connect or authorize client
193193 }
194194 );
195195 ```
0 commit comments