Skip to content

Commit 42b3c0a

Browse files
authored
Merge pull request #68 from yadaiio/typos
Fix typos in documentation
2 parents d670a66 + f9bd278 commit 42b3c0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/DatabaseInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* The `close` event will be emitted once the connection closes (terminates).
3333
*
3434
* ```php
35-
* $connecion->on('close', function () {
35+
* $connection->on('close', function () {
3636
* echo 'Connection closed' . PHP_EOL;
3737
* });
3838
* ```
@@ -173,7 +173,7 @@ public function quit();
173173
* Force-close the connection.
174174
*
175175
* Unlike the `quit()` method, this method will immediately force-close the
176-
* connection and reject all oustanding commands.
176+
* connection and reject all outstanding commands.
177177
*
178178
* ```php
179179
* $db->close();

src/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function open($filename, $flags = null)
159159
* From a consumer side this means that you can start sending queries to the
160160
* database right away while the underlying database process may still be
161161
* outstanding. Because creating this underlying process may take some
162-
* time, it will enqueue all oustanding commands and will ensure that all
162+
* time, it will enqueue all outstanding commands and will ensure that all
163163
* commands will be executed in correct order once the database is ready.
164164
* In other words, this "virtual" database behaves just like a "real"
165165
* database as described in the `DatabaseInterface` and frees you from

0 commit comments

Comments
 (0)