diff --git a/src/reference/docbook/beans-context-additional.xml b/src/reference/docbook/beans-context-additional.xml
index 1e97fb66247..8cf19e31ad7 100644
--- a/src/reference/docbook/beans-context-additional.xml
+++ b/src/reference/docbook/beans-context-additional.xml
@@ -150,7 +150,7 @@
message=Alligators rock!
# in exceptions.properties
-argument.required=The '{0}' argument is required.
+argument.required=The {0} argument is required.
A program to execute the MessageSource
functionality is shown in the next example. Remember that all
@@ -219,7 +219,7 @@ argument.required=The '{0}' argument is required.
The userDao argument is required.
With regard to internationalization (i18n), Spring's various
- MessageResource implementations follow the same
+ MessageSource implementations follow the same
locale resolution and fallback rules as the standard JDK
ResourceBundle. In short, and continuing with the
example messageSource defined previously, if you want
@@ -233,7 +233,7 @@ argument.required=The '{0}' argument is required.
messages will be resolved is specified manually.
# in exceptions_en_GB.properties
-argument.required=Ebagum lad, the '{0}' argument is required, I say, required.
+argument.required=Ebagum lad, the {0} argument is required, I say, required.
public static void main(final String[] args) {
MessageSource resources = new ClassPathXmlApplicationContext("beans.xml");
diff --git a/src/reference/docbook/mvc.xml b/src/reference/docbook/mvc.xml
index 10af04d3b8e..6d1101cf035 100644
--- a/src/reference/docbook/mvc.xml
+++ b/src/reference/docbook/mvc.xml
@@ -2751,7 +2751,7 @@ deferredResult.setResult(data);
The following example shows how to configure an interceptor:
<beans>
- <bean id="handlerMapping" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
+ <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
<property name="interceptors">
<bean class="example.MyInterceptor"/>
</property>