diff --git a/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/JettyHttpClientBuilder.java b/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/JettyHttpClientBuilder.java index 0c566a02c89..157635cd87c 100644 --- a/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/JettyHttpClientBuilder.java +++ b/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/JettyHttpClientBuilder.java @@ -75,10 +75,10 @@ public final class JettyHttpClientBuilder { } /** - * Return a new {@link JettyClientHttpRequestFactoryBuilder} that applies additional - * customization to the underlying {@link HttpClient}. + * Return a new {@link JettyHttpClientBuilder} that applies additional customization + * to the underlying {@link HttpClient}. * @param customizer the customizer to apply - * @return a new {@link JettyClientHttpRequestFactoryBuilder} instance + * @return a new {@link JettyHttpClientBuilder} instance */ public JettyHttpClientBuilder withCustomizer(Consumer customizer) { Assert.notNull(customizer, "'customizer' must not be null"); @@ -87,10 +87,10 @@ public final class JettyHttpClientBuilder { } /** - * Return a new {@link JettyClientHttpRequestFactoryBuilder} that uses the given - * factory to create the {@link HttpClientTransport}. + * Return a new {@link JettyHttpClientBuilder} that uses the given factory to create + * the {@link HttpClientTransport}. * @param httpClientTransportFactory the {@link HttpClientTransport} factory to use - * @return a new {@link JettyClientHttpRequestFactoryBuilder} instance + * @return a new {@link JettyHttpClientBuilder} instance * @since 4.0.0 */ public JettyHttpClientBuilder withHttpClientTransportFactory( @@ -101,10 +101,10 @@ public final class JettyHttpClientBuilder { } /** - * Return a new {@link JettyClientHttpRequestFactoryBuilder} that applies additional - * customization to the underlying {@link HttpClientTransport}. + * Return a new {@link JettyHttpClientBuilder} that applies additional customization + * to the underlying {@link HttpClientTransport}. * @param httpClientTransportCustomizer the customizer to apply - * @return a new {@link JettyClientHttpRequestFactoryBuilder} instance + * @return a new {@link JettyHttpClientBuilder} instance */ public JettyHttpClientBuilder withHttpClientTransportCustomizer( Consumer httpClientTransportCustomizer) { @@ -115,10 +115,10 @@ public final class JettyHttpClientBuilder { } /** - * Return a new {@link JettyClientHttpRequestFactoryBuilder} that applies additional - * customization to the underlying {@link ClientConnector}. + * Return a new {@link JettyHttpClientBuilder} that applies additional customization + * to the underlying {@link ClientConnector}. * @param clientConnectorCustomizerCustomizer the customizer to apply - * @return a new {@link JettyClientHttpRequestFactoryBuilder} instance + * @return a new {@link JettyHttpClientBuilder} instance */ public JettyHttpClientBuilder withClientConnectorCustomizerCustomizer( Consumer clientConnectorCustomizerCustomizer) { diff --git a/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/ReactorHttpClientBuilder.java b/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/ReactorHttpClientBuilder.java index 2325689bb9f..e6287613460 100644 --- a/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/ReactorHttpClientBuilder.java +++ b/module/spring-boot-http-client/src/main/java/org/springframework/boot/http/client/ReactorHttpClientBuilder.java @@ -37,7 +37,7 @@ import org.springframework.util.Assert; import org.springframework.util.function.ThrowingConsumer; /** - * Builder that can be used to create a Rector Netty {@link HttpClient}. + * Builder that can be used to create a Reactor Netty {@link HttpClient}. * * @author Phillip Webb * @author Andy Wilkinson