diff --git a/07-Database/02-Query-Builder.adoc b/07-Database/02-Query-Builder.adoc index 36d859a..7a2252e 100644 --- a/07-Database/02-Query-Builder.adoc +++ b/07-Database/02-Query-Builder.adoc @@ -611,7 +611,7 @@ await Database.from('users').avgDistinct('age as age') // returns array ---- ==== increment -Increase the column value by `1`: +Increase the column value by the specified amount: [source, javascript] ---- @@ -622,7 +622,7 @@ await Database ---- ==== decrement -Decrease the column value by `1`: +Decrease the column value by the specified amount: [source, javascript] ----