You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/04/13 15:40:55 UTC

[camel] branch main updated: CAMEL-17965: camel-file - Fix wrong doc

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 04ac8f197d4 CAMEL-17965: camel-file - Fix wrong doc
04ac8f197d4 is described below

commit 04ac8f197d494371cb3d261ae1e7a0e16cd16795
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Apr 13 17:40:41 2022 +0200

    CAMEL-17965: camel-file - Fix wrong doc
---
 components/camel-file/src/main/docs/file-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-file/src/main/docs/file-component.adoc b/components/camel-file/src/main/docs/file-component.adoc
index 397d11300b6..113568755cc 100644
--- a/components/camel-file/src/main/docs/file-component.adoc
+++ b/components/camel-file/src/main/docs/file-component.adoc
@@ -448,11 +448,11 @@ Will for example create a file named `foo.done` if the target file was
 from("file://inputdir/?delete=true").to("file://outputdir")
 ----
 
-=== Read from a directory and write to another directory using a overrule dynamic name
+=== Read from a directory and write to another directory using a dynamic name
 
 [source,java]
 ----
-from("file://inputdir/?delete=true").to("file://outputdir?overruleFile=copy-of-${file:name}")
+from("file://inputdir/?delete=true").to("file://outputdir?fileName=copy-of-${file:name}")
 ----
 
 Listen on a directory and create a message for each file dropped there.