You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2018/10/26 23:28:46 UTC

[camel] branch master updated: Fixed typo

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

aldettinger 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 8d5d88e  Fixed typo
8d5d88e is described below

commit 8d5d88e05e3f076efa9cc8b98e6536c921538693
Author: aldettinger <al...@gmail.com>
AuthorDate: Fri Oct 26 21:48:25 2018 +0200

    Fixed typo
---
 camel-core/src/main/docs/eips/rollback-eip.adoc         | 2 +-
 camel-core/src/main/docs/eips/transactional-client.adoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-core/src/main/docs/eips/rollback-eip.adoc b/camel-core/src/main/docs/eips/rollback-eip.adoc
index c3464d5..b86d65e 100644
--- a/camel-core/src/main/docs/eips/rollback-eip.adoc
+++ b/camel-core/src/main/docs/eips/rollback-eip.adoc
@@ -98,7 +98,7 @@ the templates.
 ----
 public void configure() { 
     ... 
-    Policy requried = bean(SpringTransactionPolicy.class, "PROPAGATION_REQUIRED")); 
+    Policy required = bean(SpringTransactionPolicy.class, "PROPAGATION_REQUIRED")); 
     Policy requirenew = bean(SpringTransactionPolicy.class, "PROPAGATION_REQUIRES_NEW")); 
     ... 
 }
diff --git a/camel-core/src/main/docs/eips/transactional-client.adoc b/camel-core/src/main/docs/eips/transactional-client.adoc
index 4b6360f..aad20c7 100644
--- a/camel-core/src/main/docs/eips/transactional-client.adoc
+++ b/camel-core/src/main/docs/eips/transactional-client.adoc
@@ -87,7 +87,7 @@ the templates.
 ----
 public void configure() {
     ...
-    Policy requried = bean(SpringTransactionPolicy.class, "PROPAGATION_REQUIRED"));
+    Policy required = bean(SpringTransactionPolicy.class, "PROPAGATION_REQUIRED"));
     Policy requirenew = bean(SpringTransactionPolicy.class, "PROPAGATION_REQUIRES_NEW"));
     ...
 }