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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new d6c82acc0e2 Fix typos doc camel j bang (#13228)
d6c82acc0e2 is described below

commit d6c82acc0e2bcee40a910604603fba9f3112dc7f
Author: Aurélien Pupier <[email protected]>
AuthorDate: Wed Feb 21 09:13:49 2024 +0100

    Fix typos doc camel j bang (#13228)
    
    * Fix typos in Camel JBang doc
    
    Signed-off-by: Aurélien Pupier <[email protected]>
    
    * Fix typos in Camel JBang doc
    
    Signed-off-by: Aurélien Pupier <[email protected]>
    
    ---------
    
    Signed-off-by: Aurélien Pupier <[email protected]>
---
 docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index 36b01f1692a..a86647b3c34 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -28,7 +28,7 @@ by just executing `camel` (see more next).
 
 == Container Image
 
-There is also a container image availabe in 
https://hub.docker.com/r/apache/camel-jbang/[Dockerhub]
+There is also a container image available in 
https://hub.docker.com/r/apache/camel-jbang/[Dockerhub]
 
 [source,bash]
 ----
@@ -1856,7 +1856,7 @@ And these annotations should work on all runtimes
 - `@org.apache.camel.BindToRegistry` on a method to create a bean by invoking 
the method.
 - `@org.apache.camel.Converter` on class level to auto-register the 
xref:type-converter.adoc[type converters] from the class.
 
-IMPORTANT: You can use `@BeanInject` annotation to refer to existing bean 
annotated with `@BindToRegistry`, however this is possibe if the dependency is 
registered before the dependant.
+IMPORTANT: You can use `@BeanInject` annotation to refer to existing bean 
annotated with `@BindToRegistry`, however this is possible if the dependency is 
registered before the dependant.
 
 ==== Using Spring Boot dependency injection
 
@@ -2207,7 +2207,7 @@ $ camel dependency update --source=foo.java
 
 TIP: You can use `--clean` to not keep any existing dependencies and generate 
a clean fresh list.
 
-This will then automatic insert or update the JBang depencies (`//DEPS`) in 
the top of the source file.
+This will then automatic insert or update the JBang dependencies (`//DEPS`) in 
the top of the source file.
 
 You may want to use this for making it easier to load the source into an IDE 
editor to do coding.
 See previous section for more details.
@@ -2605,7 +2605,7 @@ This can be suppressed by setting the option 
`suppressExceptions` to `true` as s
 
 === Transforming message using Components
 
-Some components can also be used for message transformation such as Flatpack, 
Velocity, Freemarker, Thymaleaf, and good old XSLT.
+Some components can also be used for message transformation such as FlatPack, 
Velocity, FreeMarker, Thymeleaf, and good old XSLT.
 
 TIP: You can use `camel catalog component --filter=transform` to see which 
components can be transformation.
 
@@ -2665,7 +2665,7 @@ NOTE: The transform message with component is limited as 
some components require
 
 === Transforming message using Data Formats
 
-Some data-formats can also be used for message transformation such as Base64, 
Csv, Flatpack.
+Some data-formats can also be used for message transformation such as Base64, 
Csv, FlatPack.
 
 TIP: You can use `camel catalog dataformat --filter=transform` to see which 
components can be transformation.
 
@@ -2701,7 +2701,7 @@ This will then output:
  playing with Rantanplan], [Lucky Luke,  120,  capturing the Daltons]]
 ----
 
-As you can see Camel CSV dataformat will then unarmshal the input (from CSV 
file) to a `java.util.ArrayList` object
+As you can see Camel CSV dataformat will then unmarshal the input (from CSV 
file) to a `java.util.ArrayList` object
 with 5 elements (one per row), and each row is another List of the columns.
 
 You can configure options that the CSV data format should use, such as shown 
below:
@@ -3346,7 +3346,7 @@ The follow options related to _exporting_, can be 
configured in `application.pro
 
 |===
 
-NOTE: These are options from the export command, so you can see mor details 
and default values using `camel export --help`.
+NOTE: These are options from the export command, so you can see more details 
and default values using `camel export --help`.
 
 == Configuration
 

Reply via email to