Skip to content

Commit 7f582cc

Browse files
committed
Merge pull request #16193 from izeye
* pr/16193: Polish
2 parents 8a0dc61 + bcfbabe commit 7f582cc

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,7 @@ There are several options for hot reloading. The recommended approach is to use
26262626
additional development-time features, such as support for fast application restarts
26272627
and LiveReload as well as sensible development-time configuration (such as template
26282628
caching). Devtools works by monitoring the classpath for changes. This means that static
2629-
resource changes must be "built" for the change to take affect. By default, this happens
2629+
resource changes must be "built" for the change to take effect. By default, this happens
26302630
automatically in Eclipse when you save your changes. In IntelliJ IDEA, the Make Project
26312631
command triggers the necessary build. Due to the
26322632
<<using-spring-boot.adoc#using-boot-devtools-restart-exclude, default restart

spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8632,7 +8632,7 @@ documentation] for more details. You also need to
86328632
{junit5-documentation}/#writing-tests-test-instance-lifecycle-changing-default[switch test
86338633
instance lifecycle to "per-class"].
86348634

8635-
To mock Kotlin classes, https://mockk.io/[Mockk] is recommended. If you need the `Mockk`
8635+
To mock Kotlin classes, https://mockk.io/[MockK] is recommended. If you need the `Mockk`
86368636
equivalent of the Mockito specific
86378637
<<boot-features-testing-spring-boot-applications-mocking-beans,`@MockBean` and `@SpyBean`
86388638
annotations>>, you can use https://github.com/Ninja-Squad/springmockk[SpringMockK] which

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public void noSuchMethodErrorIsAnalyzed() {
4444
assertThat(failure).isNotNull();
4545
FailureAnalysis analysis = new NoSuchMethodFailureAnalyzer().analyze(failure);
4646
assertThat(analysis).isNotNull();
47-
System.out.println(analysis.getDescription());
4847
assertThat(analysis.getDescription())
4948
.contains(NoSuchMethodFailureAnalyzerTests.class.getName()
5049
+ ".createFailure(")

spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Next, add your user to the `docker` group. For example:
3131
$ sudo usermod -a -G docker awilkinson
3232
----
3333

34-
You may need to log out and back in again for this change to take affect and for your
34+
You may need to log out and back in again for this change to take effect and for your
3535
user to be able to connect to the daemon.
3636

3737

0 commit comments

Comments
 (0)