Skip to content

Commit d02000e

Browse files
committed
Merge branch '2.1.x'
Closes spring-projectsgh-17840
2 parents a37b8ed + 0bdf2b8 commit d02000e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,7 @@ interface. The following code shows a sample `ReactiveHealthIndicator` implement
908908
@Override
909909
public Mono<Health> health() {
910910
return doHealthCheck() //perform some specific health check that returns a Mono<Health>
911-
.onErrorResume(ex -> Mono.just(new Health.Builder().down(ex).build())));
911+
.onErrorResume(ex -> Mono.just(new Health.Builder().down(ex).build()));
912912
}
913913
914914
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8316,7 +8316,7 @@ which auto-configures one for you.
83168316
@Test
83178317
void testName(CapturedOutput output) {
83188318
System.out.println("Hello World!");
8319-
assertThat(output).contains("World"));
8319+
assertThat(output).contains("World");
83208320
}
83218321
83228322
}

0 commit comments

Comments
 (0)