diff --git a/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java b/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java index 6cabd486269e..b7d13d4d2a96 100644 --- a/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java +++ b/spring-web/src/main/java/org/springframework/web/client/RestTemplate.java @@ -79,14 +79,14 @@ * method API over underlying HTTP client libraries such as the JDK * {@code HttpURLConnection}, Apache HttpComponents, and others. RestTemplate * offers templates for common scenarios by HTTP method, in addition to the - * generalized {@code exchange} and {@code execute} methods that support + * generalized {@code exchange} and {@code execute} methods that support of * less frequent cases. * *

RestTemplate is typically used as a shared component. However, its * configuration does not support concurrent modification, and as such its * configuration is typically prepared on startup. If necessary, you can create * multiple, differently configured RestTemplate instances on startup. Such - * instances may use the same underlying {@link ClientHttpRequestFactory} + * instances may use the same the underlying {@link ClientHttpRequestFactory} * if they need to share HTTP client resources. * *

NOTE: As of 5.0 this class is in maintenance mode, with