mirror of https://github.com/apache/nifi.git
NIFI-13847 - Typos in ReplaceText properties descriptions
This closes #9354. Signed-off-by: Mark Bathori <mbathori@apache.org>
This commit is contained in:
parent
2cb8411d4f
commit
7188155d50
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue