From b0a223aa4b9ff13bd1498902a8f94c32fe827f01 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 12 Feb 2012 21:27:07 -0600 Subject: [PATCH] cleaning up comment. --- laravel/database/connection.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/laravel/database/connection.php b/laravel/database/connection.php index 7d8136d5..b830a84b 100644 --- a/laravel/database/connection.php +++ b/laravel/database/connection.php @@ -212,8 +212,7 @@ protected function execute($sql, $bindings = array()) // Every query is timed so that we can log the executinon time along // with the query SQL and array of bindings. This should be make it - // convenient for the developer to profile the application's query - // performance to diagnose bottlenecks. + // convenient for the developer to profile performance. $time = microtime(true); $result = $statement->execute($bindings);