From 3ead3cf8592a6eaf84511a26cda303b250f80db7 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Tue, 9 Aug 2011 14:45:26 +0000 Subject: [PATCH] Improve wording of scoped-proxy example in ref doc Issue: SPR-8591 --- spring-framework-reference/src/beans-scopes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-framework-reference/src/beans-scopes.xml b/spring-framework-reference/src/beans-scopes.xml index 4c99404941..99d2a8d21b 100644 --- a/spring-framework-reference/src/beans-scopes.xml +++ b/spring-framework-reference/src/beans-scopes.xml @@ -405,7 +405,7 @@ <!-- an HTTP Session-scoped bean exposed as a proxy --> <bean id="userPreferences" class="com.foo.UserPreferences" scope="session"> - <!-- this next element effects the proxying of the surrounding bean --> + <!-- instructs the container to proxy the surrounding bean --> <aop:scoped-proxy/> </bean>