From 9cee0bc7e161e635f4a0685bd929e1f1262c7e59 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) git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3538 50f2f4bb-b051-0410-bef5-90022cba6387 --- 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 59430dc8904..f64a463ede4 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>