From dc400c7124151c2574fc1828144bf6adf9563d29 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 28 Aug 2012 18:25:29 +0200 Subject: [PATCH] Typo in ApplicationContextAware and BeanNameAware section Issue: SPR-9609 --- spring-framework-reference/src/beans-customizing.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 .