From 4772be9cc4587f968dc84e01006ca58481956256 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Wed, 24 Sep 2014 14:16:34 +0200 Subject: [PATCH] doc typo fixes #5147 [ci skip] --- framework/db/QueryInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/db/QueryInterface.php b/framework/db/QueryInterface.php index c772c948ed..4cf6dea24c 100644 --- a/framework/db/QueryInterface.php +++ b/framework/db/QueryInterface.php @@ -102,7 +102,7 @@ interface QueryInterface * - **or**: similar to the `and` operator except that the operands are concatenated using `OR`. * * - **not**: this will take only one operator and build the negation of it by prefixing the query string with `NOT`. - * For example `['not' => ['attribute' => null]]` will result in the condition `NOT (attribute IS NULL)`. + * For example `['not', ['attribute' => null]]` will result in the condition `NOT (attribute IS NULL)`. * * - **between**: operand 1 should be the column name, and operand 2 and 3 should be the * starting and ending values of the range that the column is in.