Skip to content

Commit 5384fd3

Browse files
committed
Fix grammar
1 parent 4f82b16 commit 5384fd3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
moxio/sqlite-extended-api
55
=========================
66

7-
Exposes SQLite API's that are otherwise not available in PHP. You can connect
7+
Exposes SQLite APIs that are otherwise not available in PHP. You can connect
88
to an SQLite database as you normally would using PHP's `PDO` extension, then
99
use this library to call SQLite API methods that `PDO` does not offer (e.g.
1010
loading extensions).
@@ -29,7 +29,7 @@ Usage
2929
-----
3030
If you have an existing `PDO` connection to an SQLite database, you can use the
3131
`wrapPDO()` static method on the `Facade` class to obtain access to extra SQLite
32-
API's:
32+
APIs:
3333

3434
```php
3535
<?php
@@ -41,13 +41,13 @@ $pdo = new \PDO('sqlite::memory:');
4141
// Wrap it using this library
4242
$wrapped_connection = Facade::wrapPDO($pdo);
4343

44-
// Call extended API's on the wrapped connection object
44+
// Call extended APIs on the wrapped connection object
4545
$wrapped_connection->loadExtension('mod_spatialite.so');
4646
```
4747

4848
See the next section for methods available on the wrapped connection.
4949

50-
Exposed API's
50+
Exposed APIs
5151
-------------
5252
Below is a short overview; see [`WrappedConnection`](src/WrappedConnection.php)
5353
for details.
@@ -85,7 +85,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8585
Contributing
8686
------------
8787
Contributions to this project are more than welcome. If there are other SQLite
88-
API's that you would like to be able to use in PHP, feel free to send a PR or
88+
APIs that you would like to be able to use in PHP, feel free to send a PR or
8989
to file a feature request.
9090

9191
License

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "moxio/sqlite-extended-api",
33
"type": "library",
4-
"description": "Exposes SQLite API's that are otherwise not available in PHP",
4+
"description": "Exposes SQLite APIs that are otherwise not available in PHP",
55
"license": "MIT",
66
"keywords" : [ "sqlite", "sqlite3", "pdo", "ffi", "z-engine" ],
77
"authors": [

0 commit comments

Comments
 (0)