NIFI-13847 - Typos in ReplaceText properties descriptions

This closes #9354.

Signed-off-by: Mark Bathori <mbathori@apache.org>
This commit is contained in:
Pierre Villard 2024-10-07 21:18:52 +02:00 committed by Mark Bathori
parent 2cb8411d4f
commit 7188155d50
No known key found for this signature in database
GPG Key ID: 32DC6BA5A13FAA04
1 changed files with 2 additions and 2 deletions

View File

@ -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)