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-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 57460714ef0 Fix minor documentation typos (#1801)
57460714ef0 is described below
commit 57460714ef0e0ef30a2e6539436ed1227fd6aa2b
Author: Gabriel Oliveira <[email protected]>
AuthorDate: Sat May 30 17:40:18 2026 -0300
Fix minor documentation typos (#1801)
---
core/camel-spring-boot/src/main/docs/spring-boot.adoc | 2 +-
docs/spring-boot/modules/ROOT/pages/index.adoc | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/camel-spring-boot/src/main/docs/spring-boot.adoc
b/core/camel-spring-boot/src/main/docs/spring-boot.adoc
index 3fbd95480f7..858d9259f48 100644
--- a/core/camel-spring-boot/src/main/docs/spring-boot.adoc
+++ b/core/camel-spring-boot/src/main/docs/spring-boot.adoc
@@ -205,7 +205,7 @@ public class MyAppConfig {
}
----
-Method beforeApplicationStart` will
+Method `beforeApplicationStart` will
be called just before the Spring context is started, so the
`CamelContext` instance passed to this callback is
fully auto-configured. You can add many instances of
diff --git a/docs/spring-boot/modules/ROOT/pages/index.adoc
b/docs/spring-boot/modules/ROOT/pages/index.adoc
index d238975e675..d901255bd8e 100644
--- a/docs/spring-boot/modules/ROOT/pages/index.adoc
+++ b/docs/spring-boot/modules/ROOT/pages/index.adoc
@@ -31,9 +31,9 @@ Get started by adding the Camel and Spring Boot BOMs to your
Maven `pom.xml` fil
The `camel-spring-boot-bom` is a basic BOM that only holds the list of Camel
Spring Boot starter JARs.
-NOTE: It is recommended to import Camel Spring Boot BOM before Spring Boot BOM
to ensure Camel dependencies are using supported JARs from the release.
However, you can flip the order, and let Spring Boot BOM be first. However, you
may encounter some dependency mis-aligments in some rare situations.
+NOTE: It is recommended to import Camel Spring Boot BOM before Spring Boot BOM
to ensure Camel dependencies are using supported JARs from the release.
However, you can flip the order, and let Spring Boot BOM be first. However, you
may encounter some dependency misalignments in some rare situations.
-Next, add the xref:spring-boot.adoc[Camel Spring Boot starter] to startup the
xref:manual::camelcontext.adoc[Camel Context].
+Next, add the xref:spring-boot.adoc[Camel Spring Boot starter] to start up the
xref:manual::camelcontext.adoc[Camel Context].
[source,xml]
----