This is an automated email from the ASF dual-hosted git repository.
mbathori pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 7188155d50 NIFI-13847 - Typos in ReplaceText properties descriptions
7188155d50 is described below
commit 7188155d5028885f5d9884dbe80e92aabc580092
Author: Pierre Villard <[email protected]>
AuthorDate: Mon Oct 7 21:18:52 2024 +0200
NIFI-13847 - Typos in ReplaceText properties descriptions
This closes #9354.
Signed-off-by: Mark Bathori <[email protected]>
---
.../main/java/org/apache/nifi/processors/standard/ReplaceText.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ReplaceText.java
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ReplaceText.java
index 5805a01fd2..5822651cd4 100644
---
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ReplaceText.java
+++
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ReplaceText.java
@@ -222,7 +222,7 @@ public class ReplaceText extends AbstractProcessor {
static final PropertyDescriptor PREPEND_TEXT = new
PropertyDescriptor.Builder()
.name("Text to Prepend")
.displayName("Text to Prepend")
- .description("The text to prepend to the start of the FlowFile, or
each line, depending on teh configured value of the Evaluation Mode property")
+ .description("The text to prepend to the start of the FlowFile, or
each line, depending on the configured value of the Evaluation Mode property")
.required(true)
.addValidator(Validator.VALID)
.dependsOn(REPLACEMENT_STRATEGY, SURROUND)
@@ -231,7 +231,7 @@ public class ReplaceText extends AbstractProcessor {
static final PropertyDescriptor APPEND_TEXT = new
PropertyDescriptor.Builder()
.name("Text to Append")
.displayName("Text to Append")
- .description("The text to append to the end of the FlowFile, or each
line, depending on teh configured value of the Evaluation Mode property")
+ .description("The text to append to the end of the FlowFile, or each
line, depending on the configured value of the Evaluation Mode property")
.required(true)
.addValidator(Validator.VALID)
.dependsOn(REPLACEMENT_STRATEGY, SURROUND)