diff --git a/spring-framework-reference/src/validation.xml b/spring-framework-reference/src/validation.xml
index 2df540a1fd5..938df2038cd 100644
--- a/spring-framework-reference/src/validation.xml
+++ b/spring-framework-reference/src/validation.xml
@@ -922,11 +922,11 @@ public class MyService {
Now consider the type conversion requirements of a typical client environment such as a web or desktop application.
In such environments, you typically convert from String to support the client postback process, as well as back to String to support the view rendering process.
The more general core.convert Converter SPI does not address this scenario directly.
- To directly address this, Spring 3 introduces a conveient format SPI that provides a simple and robust alternative to PropertyEditors for client environments.
+ To directly address this, Spring 3 introduces a convenient format SPI that provides a simple and robust alternative to PropertyEditors for client environments.
In general, use the Converter SPI when you need to implement general-purpose type conversion logic.
- Use Formatters when you're working in a client environment, such as a web application, and need to apply String parsing, printing, and localization logic to form field values.
+ Use Formatters when you're working in a client environment, such as a web application, and need to parse and print localized field values.