From 36553264ceb10f651579d0d95aa3173e9fe7a32a Mon Sep 17 00:00:00 2001 From: York Lee <63626791+york-lee@users.noreply.github.com> Date: Fri, 14 Aug 2020 09:56:58 +0800 Subject: [PATCH] Fix document for core-bean.adoc This is the orginal "A bean is an object that is instantiated, assembled, and otherwise managed by a Spring IoC container". Here's an extra word of "otherwise". --- src/docs/asciidoc/core/core-beans.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/core/core-beans.adoc b/src/docs/asciidoc/core/core-beans.adoc index e4dc8308f9c..775d24dddd2 100644 --- a/src/docs/asciidoc/core/core-beans.adoc +++ b/src/docs/asciidoc/core/core-beans.adoc @@ -42,7 +42,7 @@ information on using the `BeanFactory` instead of the `ApplicationContext,` see In Spring, the objects that form the backbone of your application and that are managed by the Spring IoC container are called beans. A bean is an object that is -instantiated, assembled, and otherwise managed by a Spring IoC container. Otherwise, a +instantiated, assembled, and managed by a Spring IoC container. Otherwise, a bean is simply one of many objects in your application. Beans, and the dependencies among them, are reflected in the configuration metadata used by a container.