NIFI-1670 - typos/details in EL doc

Signed-off-by: Scott Aslan <scottyaslan@gmail.com>

This closes #2097
This commit is contained in:
Pierre Villard 2017-08-16 17:49:38 +02:00 committed by Scott Aslan
parent 60d4672195
commit 0bcb19771f
1 changed files with 4 additions and 4 deletions

View File

@ -265,8 +265,8 @@ subject exists and `false` otherwise.#
[.function] [.function]
=== isEmpty === isEmpty
*Description*: [.description]#The `isEmpty` function returns `true` if the Subject is null or contains only white-space *Description*: [.description]#The `isEmpty` function returns `true` if the Subject is null, does not contain any characters
(new line, carriage return, space, tab), `false` otherwise.# or contains only white-space (new line, carriage return, space, tab), `false` otherwise.#
*Subject Type*: [.subject]#String# *Subject Type*: [.subject]#String#
@ -275,7 +275,7 @@ subject exists and `false` otherwise.#
*Return Type*: [.returnType]#Boolean# *Return Type*: [.returnType]#Boolean#
*Examples*: `${filename:isEmpty()}` returns `true` if the "filename" attribute does not exist or contains only *Examples*: `${filename:isEmpty()}` returns `true` if the "filename" attribute does not exist or contains only
white space. white space. `${literal(" "):isEmpty()}` returns true as well as `${literal(""):isEmpty()}`.
@ -2066,7 +2066,7 @@ provides several functions for evaluating the same conditions against groups of
[.function] [.function]
=== allAttributes === allAttributes
*Description*: [.description]#Checks to see if any of the given attributes, match the given condition. This function has no subject and takes one or more *Description*: [.description]#Checks to see if all of the given attributes match the given condition. This function has no subject and takes one or more
arguments that are the names of attributes to which the remainder of the Expression is to be applied. If all of the attributes specified, arguments that are the names of attributes to which the remainder of the Expression is to be applied. If all of the attributes specified,
when evaluated against the rest of the Expression, returns a value of `true`, then this function will return `true`. Otherwise, this function when evaluated against the rest of the Expression, returns a value of `true`, then this function will return `true`. Otherwise, this function
will return `false`.# will return `false`.#