From f08d15c86f1168dfd115b51e97f3ad46a88a33b8 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 3 Oct 2009 22:19:21 +0000 Subject: [PATCH] Fixed minor grammatical errors. --- .../main/java/org/springframework/validation/Validator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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