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 53ef200  Fix typo across docs: '3rd' instead of '3th' (#3952)
53ef200 is described below

commit 53ef2009b9bbe50f903f1531c004a414bf8e4fd7
Author: Paul Pop <paulpo...@gmail.com>
AuthorDate: Fri Jun 26 14:34:49 2020 +0100

    Fix typo across docs: '3rd' instead of '3th' (#3952)
---
 .../resources/org/apache/camel/catalog/docs/resequence-eip.adoc         | 2 +-
 .../apache/camel/component/jms/JmsBatchResequencerJMSPriorityTest.java  | 2 +-
 .../src/main/docs/testcontainers-spring-junit5.adoc                     | 2 +-
 .../src/main/docs/testcontainers-spring.adoc                            | 2 +-
 components/camel-testcontainers/src/main/docs/testcontainers.adoc       | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/resequence-eip.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/resequence-eip.adoc
index c511c38..22d28c6 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/resequence-eip.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/resequence-eip.adoc
@@ -109,7 +109,7 @@ It's now much easier to use the Resequencer to resequence 
messages from JMS queu
 from("jms:queue:foo")
     // sort by JMSPriority by allowing duplicates (message can have same 
JMSPriority)
     // and use reverse ordering so 9 is first output (most important), and 0 
is last
-    // use batch mode and fire every 3th second
+    // use batch mode and fire every 3rd second
     
.resequence(header("JMSPriority")).batch().timeout(3000).allowDuplicates().reverse()
     .to("mock:result");
 ----
diff --git 
a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsBatchResequencerJMSPriorityTest.java
 
b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsBatchResequencerJMSPriorityTest.java
index da4a0a2..bc8d54f 100644
--- 
a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsBatchResequencerJMSPriorityTest.java
+++ 
b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsBatchResequencerJMSPriorityTest.java
@@ -68,7 +68,7 @@ public class JmsBatchResequencerJMSPriorityTest extends 
CamelTestSupport {
                 from("jms:queue:foo")
                     // sort by JMSPriority by allowing duplicates (message can 
have same JMSPriority)
                     // and use reverse ordering so 9 is first output (most 
important), and 0 is last
-                    // use batch mode and fire every 3th second
+                    // use batch mode and fire every 3rd second
                     
.resequence(header("JMSPriority")).batch().timeout(3000).allowDuplicates().reverse()
                     .to("mock:result");
                 // END SNIPPET: e1
diff --git 
a/components/camel-testcontainers-spring-junit5/src/main/docs/testcontainers-spring-junit5.adoc
 
b/components/camel-testcontainers-spring-junit5/src/main/docs/testcontainers-spring-junit5.adoc
index ed88cdf..935012b 100644
--- 
a/components/camel-testcontainers-spring-junit5/src/main/docs/testcontainers-spring-junit5.adoc
+++ 
b/components/camel-testcontainers-spring-junit5/src/main/docs/testcontainers-spring-junit5.adoc
@@ -8,7 +8,7 @@
 
 *Since Camel {since}*
 
-Testing camel components is sometime complex because the 3th party system a 
component interacts with does not provide testing facilities and/or is only 
available as a native application. To reduce this complexity, *Camel 
Testcontainers Spring JUnit 5* extends camel spring test support providing a 
way to create and interact with containerized applications.
+Testing camel components is sometime complex because the 3rd party system a 
component interacts with does not provide testing facilities and/or is only 
available as a native application. To reduce this complexity, *Camel 
Testcontainers Spring JUnit 5* extends camel spring test support providing a 
way to create and interact with containerized applications.
 
 This module is an extension to the camel-testcontainers-junit5 component to 
add support for Spring.
 Therefore see the documentation for testcontainers for more details.
diff --git 
a/components/camel-testcontainers-spring/src/main/docs/testcontainers-spring.adoc
 
b/components/camel-testcontainers-spring/src/main/docs/testcontainers-spring.adoc
index ea19556..fb0c33a 100644
--- 
a/components/camel-testcontainers-spring/src/main/docs/testcontainers-spring.adoc
+++ 
b/components/camel-testcontainers-spring/src/main/docs/testcontainers-spring.adoc
@@ -8,7 +8,7 @@
 
 *Since Camel {since}*
 
-Testing camel components is sometime complex because the 3th party system a 
component interacts with does not provide testing facilities and/or is only 
available as a native application. To reduce this complexity, *Camel 
Testcontainers Spring* extends camel spring test support providing a way to 
create and interact with containerized applications.
+Testing camel components is sometime complex because the 3rd party system a 
component interacts with does not provide testing facilities and/or is only 
available as a native application. To reduce this complexity, *Camel 
Testcontainers Spring* extends camel spring test support providing a way to 
create and interact with containerized applications.
 
 This module is an extension to the camel-testcontainers component to add 
support for Spring.
 Therefore see the documentation for testcontainers for more details.
diff --git a/components/camel-testcontainers/src/main/docs/testcontainers.adoc 
b/components/camel-testcontainers/src/main/docs/testcontainers.adoc
index eb17f98..522b683 100644
--- a/components/camel-testcontainers/src/main/docs/testcontainers.adoc
+++ b/components/camel-testcontainers/src/main/docs/testcontainers.adoc
@@ -8,7 +8,7 @@
 
 *Since Camel {since}*
 
-Testing camel components is sometime complex because the 3th party system a 
component interacts with does not provide testing facilities and/or is only 
available as a native application. To reduce this complexity, *Camel 
Testcontainers* extends standard camel test support providing a way to create 
and interact with containerized applications.
+Testing camel components is sometime complex because the 3rd party system a 
component interacts with does not provide testing facilities and/or is only 
available as a native application. To reduce this complexity, *Camel 
Testcontainers* extends standard camel test support providing a way to create 
and interact with containerized applications.
 
 In order to define leverage testcontainers, add the following dependency to 
your pom:
 

Reply via email to