diff --git a/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java b/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java
index b0d52e45..45c8e88a 100644
--- a/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java
+++ b/core-tiger/src/main/java/org/springframework/ws/soap/server/endpoint/annotation/SoapAction.java
@@ -24,7 +24,7 @@ import java.lang.annotation.Target;
/**
* Marks an endpoint method as the handler for an incoming request. The annotation value signifies the value for the
- * request SOAPAction header that is handled by the method.
+ * request SOAPAction header that is handled by the method.
*
* @author Arjen Poutsma
* @see org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping
@@ -35,6 +35,7 @@ import java.lang.annotation.Target;
@Documented
public @interface SoapAction {
+ /** Signifies the value for the request SOAPAction header that is handled by the method. */
String value();
}