diff --git a/spring-messaging/src/main/java/org/springframework/messaging/simp/handler/AnnotationMethodMessageHandler.java b/spring-messaging/src/main/java/org/springframework/messaging/simp/handler/AnnotationMethodMessageHandler.java
index 6ffa8f67a3..43314c04f7 100644
--- a/spring-messaging/src/main/java/org/springframework/messaging/simp/handler/AnnotationMethodMessageHandler.java
+++ b/spring-messaging/src/main/java/org/springframework/messaging/simp/handler/AnnotationMethodMessageHandler.java
@@ -138,12 +138,10 @@ public class AnnotationMethodMessageHandler implements MessageHandler, Applicati
}
/**
- * Sets the custom list of {@code HandlerMethodArgumentResolver}s that will be used as
- * the first argument resolvers when resolving the values of the mapped
- * methods.
+ * Sets the list of custom {@code HandlerMethodArgumentResolver}s that will be used
+ * after resolvers for supported argument type.
*
- * @param customArgumentResolvers the custom argument resolvers to be used first;
- * never {@code null}.
+ * @param customArgumentResolvers the list of resolvers; never {@code null}.
*/
public void setCustomArgumentResolvers(List customArgumentResolvers) {
Assert.notNull(customArgumentResolvers, "The 'customArgumentResolvers' cannot be null.");
@@ -152,10 +150,9 @@ public class AnnotationMethodMessageHandler implements MessageHandler, Applicati
/**
* Set the list of custom {@code HandlerMethodReturnValueHandler}s that will be used
- * as the first return value handlers when handling the method return values.
+ * after return value handlers for known types.
*
- * @param customReturnValueHandlers the custom return value resolvers that will be
- * used first; never {@code null}.
+ * @param customReturnValueHandlers the list of custom return value handlers, never {@code null}.
*/
public void setCustomReturnValueHandlers(List customReturnValueHandlers) {
Assert.notNull(customReturnValueHandlers, "The 'customReturnValueHandlers' cannot be null.");