From ec4556321d955a4123fc56c1185b26a34bcc6c21 Mon Sep 17 00:00:00 2001 From: SonicHedgehog Date: Wed, 20 Jun 2012 13:01:52 +0300 Subject: [PATCH] Fixed typo --- laravel/database/connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/database/connection.php b/laravel/database/connection.php index 66601ef8..26197736 100644 --- a/laravel/database/connection.php +++ b/laravel/database/connection.php @@ -194,7 +194,7 @@ public function query($sql, $bindings = array()) return $statement->rowCount(); } // For insert statements that use the "returning" clause, which is allowed - // by databsae systems such as Postgres, we need to actually return the + // by database systems such as Postgres, we need to actually return the // real query result so the consumer can get the ID. elseif (stripos($sql, 'insert') === 0 and stripos($sql, 'returning') !== false) {