1
0
Fork 0

Fix typo in changelog

This commit is contained in:
Simran Brucherseifer 2016-09-22 10:21:40 +02:00
parent ec15c72035
commit 560da962c3
1 changed files with 2 additions and 3 deletions

View File

@ -12,13 +12,12 @@ devel
* `[1] ANY == 1` will return `true`
* `[1, 2] ANY == 1` will return `true`
* `[2, 2] ANY == 1` will return `false`
* `NONE` now always returns `true` when the left-hand operand is an empty array.
The behavior for non-empty arrays does not change:
* `[] NONE == 1` will return `true`
* `[1] NONE == 1` will return `false`
* `[1, 2] ALL == 1` will return `false`
* `[2, 2] ALL == 1` will return `true`
* `[1, 2] NONE == 1` will return `false`
* `[2, 2] NONE == 1` will return `true`
* added experimental AQL functions `JSON_STRINGIFY` and `JSON_PARSE`