You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pa...@apache.org on 2020/04/06 17:43:16 UTC

[camel] branch master updated: Fix "Configuring milli seconds" example in camel-3x-upgrade-guide.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 27162e3  Fix "Configuring milli seconds" example in camel-3x-upgrade-guide.
27162e3 is described below

commit 27162e3a9718b06894267521813991745303973d
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Mon Apr 6 19:42:42 2020 +0200

    Fix "Configuring milli seconds" example in camel-3x-upgrade-guide.
---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
index 14f73bf..f16c74a 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
@@ -1020,13 +1020,13 @@ And more complex such as `8h15m` for 8 hours and 15 minutes.
 However as this was implemented as part of `String` -> `long` type conversion
 which then adds a little bit of overhead during routing, when converting from String to plain numbers.
 
-To make Camel routing engine as fast as possible, then this has been removed.
+To make Camel routing engine as fast as possible this feature has been removed.
 
 For example a timer with a 5 second period
 
 [source,java]
 ----
-from("timer:foo?period=5000")
+from("timer:foo?period=5s")
 ----
 
 Should now be specified as numeric only: