diff --git a/org.springframework.context/src/main/java/org/springframework/validation/Validator.java b/org.springframework.context/src/main/java/org/springframework/validation/Validator.java index 4ae10e00870..c67c5ea8e9e 100644 --- a/org.springframework.context/src/main/java/org/springframework/validation/Validator.java +++ b/org.springframework.context/src/main/java/org/springframework/validation/Validator.java @@ -24,7 +24,7 @@ package org.springframework.validation; * only objects in the web tier, the data-access tier, or the * whatever-tier. As such it is amenable to being used in any layer * of an application, and supports the encapsulation of validation - * logic as first-class citizens in their own right. + * logic as a first-class citizen in its own right. * *

Find below a simple but complete Validator * implementation, which validates that the various {@link String} @@ -55,7 +55,7 @@ package org.springframework.validation; * } * *

See also the Spring reference manual for a fuller discussion of - * the Validator interface and it's role in a enterprise + * the Validator interface and it's role in an enterprise * application. * * @author Rod Johnson