Browse Source

Minor typo fix: form -> from

Closes gh-1411
pull/986/merge
Andrey Kaipov 8 years ago committed by Stephane Nicoll
parent
commit
9c226aa742
  1. 2
      spring-web/src/main/java/org/springframework/http/converter/HttpMessageConverter.java

2
spring-web/src/main/java/org/springframework/http/converter/HttpMessageConverter.java

@ -57,7 +57,7 @@ public interface HttpMessageConverter<T> { @@ -57,7 +57,7 @@ public interface HttpMessageConverter<T> {
List<MediaType> 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

Loading…
Cancel
Save