From e16f3b95cb012cdbcf2a1310a86fe881ad8c0fb1 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 4 Dec 2012 14:29:54 +0100 Subject: [PATCH] Fix typo in Javadoc --- .../http/converter/AbstractHttpMessageConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/http/converter/AbstractHttpMessageConverter.java b/spring-web/src/main/java/org/springframework/http/converter/AbstractHttpMessageConverter.java index 9016da269df..c81935be60b 100644 --- a/spring-web/src/main/java/org/springframework/http/converter/AbstractHttpMessageConverter.java +++ b/spring-web/src/main/java/org/springframework/http/converter/AbstractHttpMessageConverter.java @@ -214,7 +214,7 @@ public abstract class AbstractHttpMessageConverter implements HttpMessageConv protected abstract boolean supports(Class clazz); /** - * Abstract template method that reads the actualy object. Invoked from {@link #read}. + * Abstract template method that reads the actual object. Invoked from {@link #read}. * @param clazz the type of object to return * @param inputMessage the HTTP input message to read from * @return the converted object