diff --git a/spring-framework-reference/src/beans-customizing.xml b/spring-framework-reference/src/beans-customizing.xml
index c9b8db67b83..6754d651070 100644
--- a/spring-framework-reference/src/beans-customizing.xml
+++ b/spring-framework-reference/src/beans-customizing.xml
@@ -470,10 +470,10 @@ public final class Boot {
argument or setter method parameter, respectively. For more flexibility,
including the ability to autowire fields and multiple parameter methods,
use the new annotation-based autowiring features. If you do, the
- ApplicationFactory is autowired into a
+ ApplicationContext is autowired into a
field, constructor argument, or method parameter that is expecting the
- BeanFactory type if the field, constructor,
- or method in question carries the
+ ApplicationContext type if the field,
+ constructor, or method in question carries the
@Autowired annotation. For more
information, see .