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/09/04 16:03:30 UTC

[camel] branch master updated: CAMEL-14672: Invoke customizers as part of services initialization

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 28606e9  CAMEL-14672: Invoke customizers as part of services initialization
28606e9 is described below

commit 28606e9e54b5c37dd55a461878d9bd487fc745f1
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Fri Sep 4 18:03:12 2020 +0200

    CAMEL-14672: Invoke customizers as part of services initialization
    
    Fix some typos in the upgrade guide.
---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 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 07a38bb..c912b7b 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
@@ -17,7 +17,7 @@ The following features has been removed due they become not compatible with OSGi
 
 === Customizers
 
-The customizer, which are objects used to configure some of the Camel services such as component, language ad data formats, that were previously limited to Camel Spring Boot, are now consistently used across runtimes. 
+Customizers, which are objects used to configure some of the Camel services such as component, language and data formats, that were previously limited to Camel Spring Boot, are now consistently used across runtimes.
 To make that possible, the interfaces have been changed and they do not use generics anymore.
 
 Impacted interfaces:
@@ -81,7 +81,7 @@ public class Application {
 
     public static void main(String args) throws Exception {
         Main main = new Main();
-        main..addConfigurationClass(MyConfiguration.class);
+        main.addConfigurationClass(MyConfiguration.class);
         main.run(args);
     }
 
@@ -98,5 +98,5 @@ public class Application {
 
 [NOTE]
 ====
-As coneguence of this change, the Camel Spring Boot starters have been ameneded to use Customizers instead of creating instances of components, languages or data formats.
+As a consequence of this change, the Camel Spring Boot starters have been amended to use Customizers instead of creating instances of components, languages or data formats.
 ====