From 159e7745b62dfa92b3f5c6c97975b430ec6b9554 Mon Sep 17 00:00:00 2001 From: Mateus Scheper Date: Mon, 17 Jun 2024 20:23:13 -0300 Subject: [PATCH] Improving readability by adding a comma See gh-41140 --- .../native-image/introducing-graalvm-native-images.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/native-image/introducing-graalvm-native-images.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/native-image/introducing-graalvm-native-images.adoc index 3f1cbede4f0..fad445dbb7b 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/native-image/introducing-graalvm-native-images.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/native-image/introducing-graalvm-native-images.adoc @@ -100,7 +100,7 @@ There is a bean definition for the `myConfiguration` bean, and one for `myBean`. When a `myBean` instance is required, a `BeanInstanceSupplier` is called. This supplier will invoke the `myBean()` method on the `myConfiguration` bean. -NOTE: During Spring AOT processing your application is started up to the point that bean definitions are available. +NOTE: During Spring AOT processing, your application is started up to the point that bean definitions are available. Bean instances are not created during the AOT processing phase. Spring AOT will generate code like this for all your bean definitions.