diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc index 02e9b1707f..56e08877b8 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -2627,7 +2627,7 @@ There are several options for hot reloading. The recommended approach is to use additional development-time features, such as support for fast application restarts and LiveReload as well as sensible development-time configuration (such as template caching). Devtools works by monitoring the classpath for changes. This means that static -resource changes must be "built" for the change to take affect. By default, this happens +resource changes must be "built" for the change to take effect. By default, this happens automatically in Eclipse when you save your changes. In IntelliJ IDEA, the Make Project command triggers the necessary build. Due to the <>, you can use https://github.com/Ninja-Squad/springmockk[SpringMockK] which diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java index 90e77e5a44..4fcb04d527 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java @@ -44,7 +44,6 @@ public class NoSuchMethodFailureAnalyzerTests { assertThat(failure).isNotNull(); FailureAnalysis analysis = new NoSuchMethodFailureAnalyzer().analyze(failure); assertThat(analysis).isNotNull(); - System.out.println(analysis.getDescription()); assertThat(analysis.getDescription()) .contains(NoSuchMethodFailureAnalyzerTests.class.getName() + ".createFailure(") diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/README.adoc b/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/README.adoc index 04fe3665eb..696f9a542b 100644 --- a/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/README.adoc +++ b/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/README.adoc @@ -31,7 +31,7 @@ Next, add your user to the `docker` group. For example: $ sudo usermod -a -G docker awilkinson ---- -You may need to log out and back in again for this change to take affect and for your +You may need to log out and back in again for this change to take effect and for your user to be able to connect to the daemon.