From 0c5b78f03f9fa2a91a52347114a073a8c6ee59e6 Mon Sep 17 00:00:00 2001 From: Aldrin Piri Date: Tue, 23 Jun 2015 19:59:00 -0400 Subject: [PATCH] NIFI-721: Correcting typos in capability description and dynamic property of ExtractText. --- .../java/org/apache/nifi/processors/standard/ExtractText.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 1bcd3bfea0..5a386a628b 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 {