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/09/21 16:32:00 UTC

[camel] 02/07: Document Update

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

commit 0349c103cacdb2994b076996de5bf17b403130b4
Author: Nitesh Koushik S <39...@users.noreply.github.com>
AuthorDate: Wed Sep 16 18:32:37 2020 +0530

    Document Update
    
    Change made as per the sentence
---
 docs/components/modules/ROOT/pages/properties-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/components/modules/ROOT/pages/properties-component.adoc b/docs/components/modules/ROOT/pages/properties-component.adoc
index 4a69b50..a154826 100644
--- a/docs/components/modules/ROOT/pages/properties-component.adoc
+++ b/docs/components/modules/ROOT/pages/properties-component.adoc
@@ -31,7 +31,7 @@ The component supports 10 options, which are listed below.
 | *camel.component.properties.ignore-missing-location* | Whether to silently ignore if a location cannot be located, such as a properties file not found. | false | Boolean
 | *camel.component.properties.initial-properties* | Sets initial properties which will be used before any locations are resolved. The option is a java.util.Properties type. |  | String
 | *camel.component.properties.location* | A list of locations to load properties. You can use comma to separate multiple locations. This option will override any default locations and only use the locations from this option. |  | String
-| *camel.component.properties.override-properties* | Sets a special list of override properties that take precedence and will use first, if a property exist. The option is a java.util.Properties type. |  | String
+| *camel.component.properties.override-properties* | Sets a special list of override properties that take precedence and will use first, if a property exists. The option is a java.util.Properties type. |  | String
 | *camel.component.properties.properties-parser* | To use a custom PropertiesParser. The option is a org.apache.camel.component.properties.PropertiesParser type. |  | String
 | *camel.component.properties.system-properties-mode* | Sets the JVM system property mode (0 = never, 1 = fallback, 2 = override). The default mode (override) is to use system properties if present, and override any existing properties. OS environment variable mode is checked before JVM system property mode | 2 | Integer
 |===
@@ -67,7 +67,7 @@ The property placeholder is generally in use when doing:
 * using Blueprint PropertyPlaceholder with Camel
 xref:properties-component.adoc[Properties] component
 * using `@PropertyInject` to inject a property in a POJO
-* Using default value if a property does not exists
+* Using default value if a property does not exist
 * Include out of the box functions, to lookup property
 values from OS environment variables, JVM system properties, or the
 service idiom.