summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/pdo/pdo_driver.php
diff options
context:
space:
mode:
authorTaufan Aditya <toopay@taufanaditya.com>2012-02-10 07:10:27 +0100
committerTaufan Aditya <toopay@taufanaditya.com>2012-02-10 07:10:27 +0100
commitfdd6ad088cd5c6f29974f23e1a2747c243ecb278 (patch)
treef7c5a760c3248e36bf065bda76683de65ef05097 /system/database/drivers/pdo/pdo_driver.php
parent55bb97e6196f2d7f50a2d3f24968a94de3f64c87 (diff)
Grammar correction
Diffstat (limited to 'system/database/drivers/pdo/pdo_driver.php')
-rw-r--r--system/database/drivers/pdo/pdo_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php
index 9973bc007..fc378daeb 100644
--- a/system/database/drivers/pdo/pdo_driver.php
+++ b/system/database/drivers/pdo/pdo_driver.php
@@ -71,7 +71,7 @@ class CI_DB_pdo_driver extends CI_DB {
if (preg_match('/([^;]+):/', $this->dsn, $match) && count($match) == 2)
{
// If there is a minimum valid dsn string pattern found, we're done
- // This for general PDO users, who tend to have full DSN string.
+ // This is for general PDO users, who tend to have a full DSN string.
$this->pdodriver = end($match);
}
else