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 bc27cce Minimal improvement of the Camel 3.6 upgrade guide: Fix typos etc. bc27cce is described below commit bc27cce552070c08601f444a5674fddd21b6ff62 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sun Oct 25 13:17:44 2020 +0100 Minimal improvement of the Camel 3.6 upgrade guide: Fix typos etc. --- docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc index ae58edf..75c0065 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc @@ -181,14 +181,14 @@ can now handle this exception (e.g. `onException`). The exception is regarded as To configure the component to use a pre-configured cache, it is no longer required to use the now removed `cache` option as the component performs a look-up in the registry based on the `cacheName` URI param. -As example, the following code: +For example, the following code: [source,java] ---- .to("caffeine-cache://cache?cache=#myCache&action=PUT&key=1") ---- -Should eb replaced by: +Should be replaced by: [source,java] ----