minor typo in expression-language-guide.doc

delimiter in example was asciidoc syntax

This closes #1098.

Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
Lee Laim 2016-10-04 15:16:37 -06:00 committed by Andy LoPresto
parent 17a36c6fd5
commit 4dbdfea5dc
No known key found for this signature in database
GPG Key ID: 3C6EF65B2F7DEF69
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ then the following Expressions will result in the following values:
| `${line:getDelimitedField(2):trim()}` | 32
| `${line:getDelimitedField(1)}` | "Jacobson, John"
| `${line:getDelimitedField(1, ',', '"', '\\', true)}` | Jacobson, John
| `${altLine:getDelimitedField(1, '|')} | Jacobson, John
| `${altLine:getDelimitedField(1, '\|')}` | Jacobson, John
|======================================================================