Repository: nifi Updated Branches: refs/heads/master b5ca7adbb -> a3edd34db
NIFI-4840 Fix formatting for expression language guide for toRadix and fromRadix Signed-off-by: Pierre Villard <[email protected]> This closes #2449. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/a3edd34d Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/a3edd34d Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/a3edd34d Branch: refs/heads/master Commit: a3edd34db031d5d5efc83a90e99368a1dfd20a4f Parents: b5ca7ad Author: Leah Anderson <[email protected]> Authored: Sun Feb 4 19:32:02 2018 -0500 Committer: Pierre Villard <[email protected]> Committed: Tue Feb 13 09:33:53 2018 +0100 ---------------------------------------------------------------------- .../src/main/asciidoc/expression-language-guide.adoc | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/a3edd34d/nifi-docs/src/main/asciidoc/expression-language-guide.adoc ---------------------------------------------------------------------- diff --git a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc index e494550..079cb8a 100644 --- a/nifi-docs/src/main/asciidoc/expression-language-guide.adoc +++ b/nifi-docs/src/main/asciidoc/expression-language-guide.adoc @@ -1642,11 +1642,7 @@ Divide. This is to preserve backwards compatibility and to not force rounding er [.function] === toRadix -*Description*: [.description]#Converts the Subject from a Base 10 number to a different Radix (or number base). An optional - second argument can be used to indicate the minimum number of characters to be used. If the converted value - has fewer than this number of characters, the number will be padded with leading zeroes. - - If a decimal is passed as the subject, it will first be converted to a whole number and then processed.# +*Description*: [.description]#Converts the Subject from a Base 10 number to a different Radix (or number base). An optional second argument can be used to indicate the minimum number of characters to be used. If the converted value has fewer than this number of characters, the number will be padded with leading zeroes. If a decimal is passed as the subject, it will first be converted to a whole number and then processed.# *Subject Type*: [.subject]#Number# @@ -1676,10 +1672,7 @@ Divide. This is to preserve backwards compatibility and to not force rounding er [.function] === fromRadix -*Description*: [.description]#Converts the Subject from a specified Radix (or number base) to a base ten whole number. The subject will converted as is, without interpretation, and all characters -must be valid for the base being converted from. For example converting "0xFF" from hex will not work due to "x" being a invalid hex character. - - If a decimal is passed as the subject, it will first be converted to a whole number and then processed.# +*Description*: [.description]#Converts the Subject from a specified Radix (or number base) to a base ten whole number. The subject will converted as is, without interpretation, and all characters must be valid for the base being converted from. For example converting "0xFF" from hex will not work due to "x" being a invalid hex character. If a decimal is passed as the subject, it will first be converted to a whole number and then processed.# *Subject Type*: [.subject]#String#
