Skip to content

Commit 0f03df8

Browse files
lukasdoodrotbohm
authored andcommitted
GH-776 - Correct spelling in documentation.
1 parent 2cd51c8 commit 0f03df8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/docs/antora/modules/ROOT/pages/documentation.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Rel_D(Modulith.Application.order, Modulith.Application.catalog, "depends on", $t
8282
SHOW_LEGEND()
8383
....
8484

85-
The second call will create additional diagrams that only include the individual module and the ones they directly depend on on the canvas.
85+
The second call will create additional diagrams that only include the individual module and the ones they directly depend on the canvas.
8686

8787
.A subset of application modules and their relationships starting from the order module rendered as C4 component diagram
8888
[plantuml, c4-individual-modules, svg]

src/docs/antora/modules/ROOT/pages/fundamentals.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ The annotation exposes the following attributes to customize:
460460
|The human readable name of the application to be used in generated xref:documentation.adoc#documentation[documentation].
461461

462462
|`sharedModules`
463-
|Declares the application modules with the given names as shared modules, which means that they will be always included in xref:testing.adoc#testing[application module integration tests].
463+
|Declares the application modules with the given names as shared modules, which means that they will always be included in xref:testing.adoc#testing[application module integration tests].
464464

465465
|`additionalPackages`
466466
|Instructs Spring Modulith to treat the configured packages as additional root application packages. In other words, application module detection will be triggered for those as well.

src/docs/antora/modules/ROOT/pages/testing.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Spring Modulith allows to run integration tests bootstrapping individual application modules in isolation or combination with others.
55
To achieve this, place a JUnit test class in an application module package or any sub-package of that and annotate it with `@ApplicationModuleTest`:
66

7-
.A application module integration test class
7+
.An application module integration test class
88
[tabs]
99
======
1010
Java::
@@ -36,7 +36,7 @@ class OrderIntegrationTests {
3636
This will run your integration test similar to what `@SpringBootTest` would have achieved but with the bootstrap actually limited to the application module the test resides in.
3737
If you configure the log level for `org.springframework.modulith` to `DEBUG`, you will see detailed information about how the test execution customizes the Spring Boot bootstrap:
3838

39-
.The log output of a application module integration test bootstrap
39+
.The log output of an application module integration test bootstrap
4040
[source, text, subs="macros"]
4141
----
4242
. ____ _ __ _ _
@@ -62,7 +62,7 @@ If you configure the log level for `org.springframework.modulith` to `DEBUG`, yo
6262
----
6363

6464
Note, how the output contains the detailed information about the module included in the test run.
65-
It creates the application module module, finds the module to be run and limits the application of auto-configuration, component and entity scanning to the corresponding packages.
65+
It creates the application module, finds the module to be run and limits the application of auto-configuration, component and entity scanning to the corresponding packages.
6666

6767
[[bootstrap-modes]]
6868
== Bootstrap Modes

0 commit comments

Comments
 (0)