From e2b8a786ffd58817915ac5734314115230aad99e Mon Sep 17 00:00:00 2001 From: nkjackzhang Date: Thu, 14 Jul 2016 17:51:58 +0800 Subject: [PATCH] Polish doc Closes gh-1110 --- src/asciidoc/core-beans.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asciidoc/core-beans.adoc b/src/asciidoc/core-beans.adoc index 118326a45f..894b0335e2 100644 --- a/src/asciidoc/core-beans.adoc +++ b/src/asciidoc/core-beans.adoc @@ -6670,7 +6670,7 @@ where the magic comes in: All `@Configuration` classes are subclassed at startup with `CGLIB`. In the subclass, the child method checks the container first for any cached (scoped) beans before it calls the parent method and creates a new instance. Note that as of Spring 3.2, it is no longer necessary to add CGLIB to your classpath because -CGLIB classes have been repackaged under org.springframework and included directly +CGLIB classes have been repackaged under `org.springframework.cglib` and included directly within the spring-core JAR. [NOTE]