Browse Source

Update laravel/documentation/database/fluent.md

Missing comma
daris 12 years ago
parent
commit
be7544b67a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/documentation/database/fluent.md

+ 1 - 1
laravel/documentation/database/fluent.md

@@ -124,7 +124,7 @@ You may discover the need to group portions of a WHERE clause within parentheses
 		->or_where(function($query)
 		{
 			$query->where('age', '>', 25);
-			$query->where('votes' '>', 100);
+			$query->where('votes', '>', 100);
 		})
 		->get();