NIFI-721: Correcting typos in capability description and dynamic property of ExtractText.
Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/0c5b78f0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/0c5b78f0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/0c5b78f0 Branch: refs/heads/NIFI-632 Commit: 0c5b78f03f9fa2a91a52347114a073a8c6ee59e6 Parents: e767f5c Author: Aldrin Piri <[email protected]> Authored: Tue Jun 23 19:59:00 2015 -0400 Committer: Aldrin Piri <[email protected]> Committed: Tue Jun 23 19:59:00 2015 -0400 ---------------------------------------------------------------------- .../java/org/apache/nifi/processors/standard/ExtractText.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/0c5b78f0/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExtractText.java ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExtractText.java b/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExtractText.java index 1bcd3bf..5a386a6 100644 --- a/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExtractText.java +++ b/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExtractText.java @@ -60,7 +60,7 @@ import org.apache.nifi.annotation.lifecycle.OnScheduled; + "Regular Expressions are entered by adding user-defined properties; " + "the name of the property maps to the Attribute Name into which the result will be placed. " + "The first capture group, if any found, will be placed into that attribute name." - + "But all catpure groups, including the matching string sequence itself will also be " + + "But all capture groups, including the matching string sequence itself will also be " + "provided at that attribute name with an index value provided." + "The value of the property must be a valid Regular Expressions with one or more capturing groups. " + "If the Regular Expression matches more than once, only the first match will be used. " @@ -69,7 +69,7 @@ import org.apache.nifi.annotation.lifecycle.OnScheduled; + "and no attributes will be applied to the FlowFile.") @DynamicProperty(name = "A FlowFile attribute", value = "A Regular Expression with one or more capturing group", description = "The first capture group, if any found, will be placed into that attribute name." - + "But all catpure groups, including the matching string sequence itself will also be " + + "But all capture groups, including the matching string sequence itself will also be " + "provided at that attribute name with an index value provided.") public class ExtractText extends AbstractProcessor {
