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/03/05 09:06:59 UTC

[camel] branch master updated: Update jcache-component.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 af77970  Update jcache-component.adoc
     new fd726b4  Merge pull request #3612 from kawakamimanabu/typo_jcache
af77970 is described below

commit af7797084f1d75bcb7d3b8be9e3621a887729516
Author: ts-manabu.kawakami <ts...@rakuten.com>
AuthorDate: Thu Mar 5 17:27:39 2020 +0900

    Update jcache-component.adoc
---
 components/camel-jcache/src/main/docs/jcache-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-jcache/src/main/docs/jcache-component.adoc b/components/camel-jcache/src/main/docs/jcache-component.adoc
index 04c727c..08fccbc 100644
--- a/components/camel-jcache/src/main/docs/jcache-component.adoc
+++ b/components/camel-jcache/src/main/docs/jcache-component.adoc
@@ -196,7 +196,7 @@ from("direct:get-orders")
 
 If the _cache_ is not set, the policy will try to lookup or create the cache automatically.
  If the _cacheManager_ is set on the policy, it will try to get cache with the set _cacheName_ (routeId by default) from the CacheManager.
- Is the cache does not exist it will create a new one using the _cacheConfiguration_ (new MutableConfiguration by default).
+ If the cache does not exist it will create a new one using the _cacheConfiguration_ (new MutableConfiguration by default).
 
 [source,java]
 ----------------------------
@@ -332,7 +332,7 @@ It's more convenient to create a JCachePolicy in Java especially within a RouteB
 
 == Create Cache from XML
 
-It's not strictly speaking related to Camel XML DLS, but JCache providers usually have a way to configure the cache in an XML file.
+It's not strictly speaking related to Camel XML DSL, but JCache providers usually have a way to configure the cache in an XML file.
  For example with Hazelcast you can add a _hazelcast.xml_ to classpath to configure the cache "spring" used in the example above.
 
 [source,xml]