Skip to content

Commit 8b5c797

Browse files
undo
1 parent 4e441b3 commit 8b5c797

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

framework-docs/modules/ROOT/pages/core/beans/dependencies/factory-properties-detailed.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ listings shows how to use the `parent` attribute:
169169
[source,xml,indent=0,subs="verbatim,quotes"]
170170
----
171171
<!-- in the child (descendant) context, bean name is the same as the parent bean -->
172-
<bean id="accountService"
172+
<bean id="accountService"
173173
class="org.springframework.aop.framework.ProxyFactoryBean">
174174
<property name="target">
175175
<ref parent="accountService"/> <!-- notice how we refer to the parent bean -->

spring-test/src/test/resources/org/springframework/test/context/expression/ExpressionUsageTests-context.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
<bean id="andy2"
4040
class="org.springframework.test.context.expression.ExpressionUsageTests$Foo">
41-
<property name="name" value="#{properties.username }"/> <!-- space in expression -->
41+
<property name="name" value="#{properties.username }" /><!-- space in expression -->
4242
</bean>
4343

44-
</beans>
44+
</beans>

0 commit comments

Comments
 (0)