8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c42bf commit 9046388Copy full SHA for 9046388
Documentation/Books/AQL/Functions/Miscellaneous.md
@@ -201,8 +201,8 @@ conditions.
201
- returns **retVal** (bool): returns true if expression evaluates to true
202
203
```js
204
-FOR i IN 1..3 RETURN FILTER ASSERT(i>0, "i is not greater 0") RETURN i
205
-FOR i IN 1..3 RETURN FILTER WARN(i<2, "i is not smaller 2") RETURN i
+FOR i IN 1..3 FILTER ASSERT(i > 0, "i is not greater 0") RETURN i
+FOR i IN 1..3 FILTER WARN(i < 2, "i is not smaller 2") RETURN i
206
```
207
### CALL()
208
0 commit comments