1
0
Fork 0

Merge pull request #1115 from CoDEmanX/devel

Minor documentation fixes.
This commit is contained in:
Thomas Schmidts 2014-11-24 11:22:25 +01:00
commit cab769f8cb
2 changed files with 7 additions and 7 deletions

View File

@ -17,10 +17,10 @@ For string processing, AQL offers the following functions:
*separator* string. *null* values are ignored. List value arguments
are expanded automatically, and their individual members will be concatenated.
/* "foo,bar,baz" */
/* "foo, bar, baz" */
CONCAT_SEPARATOR(', ', 'foo', 'bar', 'baz')
/* "foo,bar,baz" */
/* "foo, bar, baz" */
CONCAT_SEPARATOR(', ', [ 'foo', 'bar', 'baz' ])
- *CHAR_LENGTH(value)*: Return the number of characters in *value*. This is
@ -88,7 +88,7 @@ For string processing, AQL offers the following functions:
TRIM(" foobar\t \r\n ")
/* "foo;bar;baz" */
TRIM(";foo;bar;baz, ", "; ")
TRIM(";foo;bar;baz, ", ",; ")
- *LTRIM(value, chars)*: Returns the string *value* with whitespace stripped
from the start only. The optional *chars* parameter can be used to override the

View File

@ -93,11 +93,11 @@ The following other AQL functions have been added:
The already existing functions `CONCAT` and `CONCAT_SEPARATOR` now support
list arguments, e.g.:
/* "foobarbaz" */
CONCAT([ 'foo', 'bar', 'baz'])
/* "foobarbaz" */
CONCAT([ 'foo', 'bar', 'baz'])
/* "foo,bar,baz" */
CONCAT_SEPARATOR(", ", [ 'foo', 'bar', 'baz'])
/* "foo,bar,baz" */
CONCAT_SEPARATOR(", ", [ 'foo', 'bar', 'baz'])
!SUBSUBSECTION AQL queries throw less exceptions