From 7188155d5028885f5d9884dbe80e92aabc580092 Mon Sep 17 00:00:00 2001 From: Pierre Villard Date: Mon, 7 Oct 2024 21:18:52 +0200 Subject: [PATCH] NIFI-13847 - Typos in ReplaceText properties descriptions This closes #9354. Signed-off-by: Mark Bathori --- .../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)