From 27136cda4488aa63a02818e354365f9cf40fdd66 Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Mon, 7 Sep 2020 12:29:28 -0400 Subject: [PATCH] Fix typo See gh-23215 --- .../src/docs/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index b2eee62509..3c0524f3e0 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -450,7 +450,7 @@ the beans lifecycle or even processing application events. With {spring-framework-api}/core/metrics/ApplicationStartup.html[ApplicationStartup`], Spring Framework {spring-framework-docs}/core.html#context-functionality-startup[allows you track the application startup sequence with `StartupStep`s]. This data can be collected for profiling purposes, or just to have a better understanding of an application startup process. -You can choose a `ApplicationStartup` implementation when setting up the `SpringApplication` instance. +You can choose an `ApplicationStartup` implementation when setting up the `SpringApplication` instance. For example, to use the `BufferingApplicationStartup`, you could write: [source,java,indent=0]