From 0a0709b789bec5b240b6ea0879862a16fad5c492 Mon Sep 17 00:00:00 2001 From: Rick Evans Date: Thu, 24 May 2007 18:15:28 +0000 Subject: [PATCH] Corrected typo ('for' -> 'for'). --- .../org/springframework/ws/context/MessageContext.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/springframework/ws/context/MessageContext.java b/core/src/main/java/org/springframework/ws/context/MessageContext.java index 255b6f42..bd40c91d 100644 --- a/core/src/main/java/org/springframework/ws/context/MessageContext.java +++ b/core/src/main/java/org/springframework/ws/context/MessageContext.java @@ -22,8 +22,10 @@ import java.io.InputStream; import org.springframework.ws.WebServiceMessage; /** - * Context holder for message requests. Contains both the message request as well as the response. Response message are - * usually lazily created. + * Context holder for message requests. + * + *

Contains both the message request as well as the response. Response message are + * usually lazily created (but do not have to be). * * @author Arjen Poutsma */ @@ -87,7 +89,7 @@ public interface MessageContext { /** * Check if this message context contains a property with the given name. * - * @param name the name of the property to look fo + * @param name the name of the property to look for * @return true if the MessageContext contains the property; false otherwise */ boolean containsProperty(String name);