diff --git a/docs/src/main/asciidoc/appcds.adoc b/docs/src/main/asciidoc/appcds.adoc index d87f704760a7f..59abbaf88468c 100644 --- a/docs/src/main/asciidoc/appcds.adoc +++ b/docs/src/main/asciidoc/appcds.adoc @@ -83,8 +83,8 @@ Given what was mentioned above about how the application needs to be launched in The answer is that at application build time, right after the application archive is built, Quarkus launches the application, but only the parts of the launch process that are safe are run. More specifically, the application is run up until the steps that actually open sockets or run application logic. -This results in the archive process that on one hand is completely safe to generate, but on the other hand not being able to archive every single class that the application might need during boot -(which is why users will get a slightly more effective archive if they manually go through the hoops of generating the AppCDS archive). +This results in an archive generation process that on one hand is completely safe, but on the other hand is unable to archive every single class that the application might need at boot time. +As a result, users are expected to get a slightly more effective archive if they manually go through the hoops of generating the AppCDS archive. ==== === Usage in containers