From 9c226aa742942e4dbfbc5395f80cc8059cbf3831 Mon Sep 17 00:00:00 2001 From: Andrey Kaipov Date: Mon, 1 May 2017 12:15:09 -0400 Subject: [PATCH] Minor typo fix: form -> from Closes gh-1411 --- .../springframework/http/converter/HttpMessageConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/http/converter/HttpMessageConverter.java b/spring-web/src/main/java/org/springframework/http/converter/HttpMessageConverter.java index 4fc985333d..7cb9c6c61c 100644 --- a/spring-web/src/main/java/org/springframework/http/converter/HttpMessageConverter.java +++ b/spring-web/src/main/java/org/springframework/http/converter/HttpMessageConverter.java @@ -57,7 +57,7 @@ public interface HttpMessageConverter { List getSupportedMediaTypes(); /** - * Read an object of the given type form the given input message, and returns it. + * Read an object of the given type from the given input message, and returns it. * @param clazz the type of object to return. This type must have previously been passed to the * {@link #canRead canRead} method of this interface, which must have returned {@code true}. * @param inputMessage the HTTP input message to read from