From eeb5c2d832289f63e1d23e5ce2d9bf1ad94fe58c Mon Sep 17 00:00:00 2001 From: thehamsterofgod Date: Fri, 3 Jul 2015 00:03:44 +0800 Subject: [PATCH] typo --- queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries.md b/queries.md index c8e2f48ec54..ecc0492b499 100644 --- a/queries.md +++ b/queries.md @@ -397,7 +397,7 @@ Of course, in addition to inserting records into the database, the query builder The query builder also provides convenient methods for incrementing or decrementing the value of a given column. This is simply a short-cut, providing a more expressive and terse interface compared to manually writing the `update` statement. -Both of these methods accept at least one argument: the column to modify. An second argument may optionally be passed to control the amount by which the column should be incremented / decremented. +Both of these methods accept at least one argument: the column to modify. A second argument may optionally be passed to control the amount by which the column should be incremented / decremented. DB::table('users')->increment('votes');