From 9ac874d8d3bb623923cf885589060cef9d044c81 Mon Sep 17 00:00:00 2001 From: Jochen Wierum Date: Sat, 22 Oct 2022 08:25:11 +0200 Subject: [PATCH] GH-52 - Fix smaller typos in documentation. --- src/docs/asciidoc/30-testing.adoc | 2 +- src/docs/asciidoc/70-observability.adoc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/asciidoc/30-testing.adoc b/src/docs/asciidoc/30-testing.adoc index 9fcb4834..15911173 100644 --- a/src/docs/asciidoc/30-testing.adoc +++ b/src/docs/asciidoc/30-testing.adoc @@ -16,7 +16,7 @@ class OrderIntegrationTests { } ---- -This will run you integration test similar to what `@SpringBootTest` would have achieved but with the bootstrap actually limited to the application module the test resides in. +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. 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: .The log output of a application module integration test bootstrap diff --git a/src/docs/asciidoc/70-observability.adoc b/src/docs/asciidoc/70-observability.adoc index bf469bf6..900e8046 100644 --- a/src/docs/asciidoc/70-observability.adoc +++ b/src/docs/asciidoc/70-observability.adoc @@ -9,10 +9,10 @@ To activate the instrumentation add the following runtime dependency to your pro ---- org.springframework.modulith - spring-modulith + spring-modulith-observability {projectVersion} runtime ---- This will cause all Spring components that are part of the application module's API being decorated with an aspect that will intercept invocations and create Micrometer spans for them.