NIFI-12381 Fixed CR and LF documentation in SplitText

This closes #8041

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
Ferenc Gerlits 2023-11-16 18:18:26 +01:00 committed by exceptionfactory
parent 1cc346b63d
commit ceeb0deb3d
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ public class SplitText extends AbstractProcessor {
public static final PropertyDescriptor REMOVE_TRAILING_NEWLINES = new PropertyDescriptor.Builder()
.name("Remove Trailing Newlines")
.description("Whether to remove newlines at the end of each split file. This should be false if you intend to merge the split files later. If this is set to "
+ "'true' and a FlowFile is generated that contains only 'empty lines' (i.e., consists only of \r and \n characters), the FlowFile will not be emitted. "
+ "'true' and a FlowFile is generated that contains only 'empty lines' (i.e., consists only of \\r and \\n characters), the FlowFile will not be emitted. "
+ "Note, however, that if header lines are specified, the resultant FlowFile will never be empty as it will consist of the header lines, so "
+ "a FlowFile may be emitted that contains only the header lines.")
.required(true)