Polish docs (#22645)

This commit is contained in:
Johnny Lim 2019-03-23 23:48:47 +09:00 committed by Sam Brannen
parent 7bb66c4f49
commit 14b1a6fdcb
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ import org.springframework.util.ClassUtils;
* Expression Language {@code #{...}} expressions which will be resolved if a
* {@link ConfigurableBeanFactory} is supplied to the class constructor.
*
* <p>A {@link ConversionService} is used to to convert resolved String argument
* <p>A {@link ConversionService} is used to convert resolved String argument
* value to the expected target method parameter type.
*
* @author Rossen Stoyanchev

View File

@ -45,7 +45,7 @@ import org.springframework.util.ClassUtils;
* Expression Language {@code #{...}} expressions which will be resolved if a
* {@link ConfigurableBeanFactory} is supplied to the class constructor.
*
* <p>A {@link ConversionService} is used to to convert resolved String argument
* <p>A {@link ConversionService} is used to convert resolved String argument
* value to the expected target method parameter type.
*
* @author Rossen Stoyanchev

View File

@ -3709,7 +3709,7 @@ suitable under load. If you plan to stream with a reactive type, you should use
The Servlet API does not provide any notification when a remote client goes away.
Therefore, while streaming to the response, whether through <<mvc-ann-async-sse, SseEmitter>>
or <<mvc-ann-async-reactive-types, reactive types>, it is important to send data periodically,
or <<mvc-ann-async-reactive-types, reactive types>>, it is important to send data periodically,
since the write fails if the client has disconnected. The send could take the form of an
empty (comment-only) SSE event or any other data that the other side would have to interpret
as a heartbeat and ignore.