Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym committed Jan 20, 2014
1 parent 603daa4 commit 7a2d850
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Aura.Sql

Provides an extension to the native [PDO](http://php.net/PDO) along with a
profiler and connection locator. Becuase _ExtendedPdo_ is an extension of the
profiler and connection locator. Because _ExtendedPdo_ is an extension of the
native _PDO_, code already using the native _PDO_ or typehinted to the native
_PDO_ can use _ExtendedPdo_ without any changes.

Expand All @@ -12,7 +12,7 @@ Added functionality in _Aura.Sql_ over the native _PDO_ includes:
instance and not incur the cost of a connection if you never make a query.

- **Bind values.** You may provide values for binding to the next query using
`bindValues()`. Mulitple calls to `bindValues()` will merge, not reset, the
`bindValues()`. Multiple calls to `bindValues()` will merge, not reset, the
values. The values will be reset after calling `query()`, `exec()`,
`prepare()`, or any of the `fetch*()` methods. In addition, binding values
that do not have any corresponding placeholders will not cause an error.
Expand Down
4 changes: 2 additions & 2 deletions src/ExtendedPdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* an array of values to a placeholder used with an `IN (...)` condition.
*
* - Bind values. You may provide values for binding to the next query using
* bindValues(). Mulitple calls to bindValues() will merge, not reset, the
* bindValues(). Multiple calls to bindValues() will merge, not reset, the
* values. The values will be reset after calling query(), exec(),
* prepare(), or any of the fetch*() methods.
*
Expand All @@ -38,7 +38,7 @@
* values, execute, and then fetch from the prepared statement. All of the
* fetch*() methods take an array of values to bind to to the query.
*
* By defult, it starts in the ERRMODE_EXCEPTION instead of ERRMODE_SILENT.
* By default, it starts in the ERRMODE_EXCEPTION instead of ERRMODE_SILENT.
*
*/
class ExtendedPdo extends PDO implements ExtendedPdoInterface
Expand Down

0 comments on commit 7a2d850

Please sign in to comment.