From 0625990020f232abc8ad9c82da804fa36e11a564 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Sat, 7 Aug 2010 13:57:28 +0000 Subject: [PATCH] Add missing equals sign to code snippet (SPR-7339) --- spring-framework-reference/src/orm.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-framework-reference/src/orm.xml b/spring-framework-reference/src/orm.xml index 59430dc890..f64a463ede 100644 --- a/spring-framework-reference/src/orm.xml +++ b/spring-framework-reference/src/orm.xml @@ -675,7 +675,7 @@ TR: REVISED, PLS REVIEW.-->This declarative transaction capability allows you <property name="sessionFactory" ref="mySessionFactory2"/> </bean> - <bean id"myProductService" class="product.ProductServiceImpl"> + <bean id="myProductService" class="product.ProductServiceImpl"> <property name="productDao" ref="myProductDao"/> <property name="inventoryDao" ref="myInventoryDao"/> </bean>