From 3488a5449ee2fcd3992f0596772694408b76484a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 29 Jan 2012 13:55:33 -0600 Subject: [PATCH] adjust comment. --- laravel/validator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/validator.php b/laravel/validator.php index 535ff9f5..33c3cad9 100644 --- a/laravel/validator.php +++ b/laravel/validator.php @@ -418,7 +418,7 @@ protected function validate_unique($attribute, $value, $parameters) if (is_null($this->db)) $this->db = Database::connection(); // We allow the table column to be specified just in case the column does - // not have the same name as the attribute. It must be in the second + // not have the same name as the attribute. It must be within the second // parameter position, right after the databse table name. if (isset($parameters[1])) $attribute = $parameters[1];