8000 fixed documentation. thanks @konsultaner · ashang/arangodb@9046388 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9046388

Browse files
committed
fixed documentation. thanks @konsultaner
1 parent 48c42bf commit 9046388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/Books/AQL/Functions/Miscellaneous.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ conditions.
201201
- returns **retVal** (bool): returns true if expression evaluates to true
202202

203203
```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
204+
FOR i IN 1..3 FILTER ASSERT(i > 0, "i is not greater 0") RETURN i
205+
FOR i IN 1..3 FILTER WARN(i < 2, "i is not smaller 2") RETURN i
206206
```
207207
### CALL()
208208

0 commit comments

Comments
 (0)
0