GH-220 - Documentation polish.

This commit is contained in:
Yossi Spektor
2023-06-24 22:29:19 +03:00
committed by Oliver Drotbohm
parent 0de48790d7
commit 0b110f70c2
2 changed files with 4 additions and 3 deletions

View File

@@ -183,7 +183,7 @@ package "Application" <<Container>> {
The Application Module Canvases can be generated by calling `Documenter.writeModuleCanvases()`:
.Generating application module component diagrams using `Documenter`
.Generating application module canvases using `Documenter`
[source, java]
----
class DocumentationTests {
@@ -199,7 +199,8 @@ class DocumentationTests {
}
----
A canvas generated looks like this:
By default, the documentation will be generated to `spring-modulith-docs` folder in your build system's build folder.
A generated canvas looks like this:
.A sample Application Module Canvas
[cols="1h,4a"]

View File

@@ -67,7 +67,7 @@ The execution order of those beans will automatically follow the application mod
class MyInitializer implements ApplicationModuleInitializer {
@Override
void initialize() {
public void initialize() {
// Initialization code goes here
}
}