From 3569edbb0b5b047241653c7239136a34b9470b0a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 21 Jan 2012 10:46:03 -0600 Subject: [PATCH] fixed comment in grammar. --- laravel/database/grammar.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/database/grammar.php b/laravel/database/grammar.php index 66351e55..5bc8621b 100644 --- a/laravel/database/grammar.php +++ b/laravel/database/grammar.php @@ -17,8 +17,8 @@ abstract class Grammar { */ public function wrap($value) { - // Expressions should be injected into the query as raw strings, - // so we do not want to wrap them in any way. We'll just return + // Expressions should be injected into the query as raw strings so + // so we do not want to wrap them in any way. We will just return // the string value from the expression to be included. if ($value instanceof Expression) return $value->get();