You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/03/03 10:51:32 UTC

[camel] 02/04: CAMEL-16277 - Camel-File: Use appendChar for the first message too - docs

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 1f28acee9ff599684c6be34df1758fa7bc489757
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 3 11:44:47 2021 +0100

    CAMEL-16277 - Camel-File: Use appendChar for the first message too - docs
---
 .../main/java/org/apache/camel/component/file/GenericFileEndpoint.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java b/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java
index c2aecc4..30d4f32 100644
--- a/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java
+++ b/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java
@@ -157,7 +157,7 @@ public abstract class GenericFileEndpoint<T> extends ScheduledPollEndpoint imple
                                                                        + "files to directories outside the starting directory, such as parent or root folders.")
     protected boolean jailStartingDirectory = true;
     @UriParam(label = "producer", description = "Used to append characters (text) after writing files. This can for "
-                                                + "example be used to add new lines or other separators when writing and appending to existing files. <p/> "
+                                                + "example be used to add new lines or other separators when writing and appending new files or existing files. <p/> "
                                                 + "To specify new-line (slash-n or slash-r) or tab (slash-t) characters then escape with an extra slash, "
                                                 + "eg slash-slash-n.")
     protected String appendChars;