Skip to content
This repository has been archived by the owner on Sep 27, 2021. It is now read-only.

Fix mistake in QueryBuilder section #409

Open
wants to merge 1 commit into
base: 4.1
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 07-Database/02-Query-Builder.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]
----
Expand All @@ -622,7 +622,7 @@ await Database
----

==== decrement
Decrease the column value by `1`:
Decrease the column value by the specified amount:

[source, javascript]
----
Expand Down