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)