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 2020/10/26 13:36:43 UTC

[camel] branch master updated: Update loadBalance-eip.adoc

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


The following commit(s) were added to refs/heads/master by this push:
     new ea9cbab  Update loadBalance-eip.adoc
ea9cbab is described below

commit ea9cbab383b058a61bdcc0ac66eaae983eae0d45
Author: fg78nc <fg...@gmail.com>
AuthorDate: Mon Oct 26 09:33:25 2020 -0400

    Update loadBalance-eip.adoc
    
    Correct Integer type declaration
---
 .../src/main/docs/modules/eips/pages/loadBalance-eip.adoc               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/loadBalance-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/loadBalance-eip.adoc
index 76168d9..5a8bc16 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/loadBalance-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/loadBalance-eip.adoc
@@ -193,7 +193,7 @@ The parameters that can be used are
 An example using Java DSL:
 [source,java]
 ----
-List<integer> distributionRatio = new ArrayList<integer>();
+List<Integer> distributionRatio = new ArrayList<Integer>();
 distributionRatio.add(4);
 distributionRatio.add(2);
 distributionRatio.add(1);