From a4b278a2696c0eb0e41c9484631e5d3266082217 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Wed, 25 Sep 2019 17:00:11 +0200 Subject: [PATCH] Polishing --- .../messaging/rsocket/RSocketRequesterExtensions.kt | 6 +++--- .../test/web/reactive/server/WebTestClientExtensions.kt | 4 ++-- .../web/reactive/function/client/WebClientExtensions.kt | 4 ++-- .../reactive/function/server/ServerResponseExtensions.kt | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/spring-messaging/src/main/kotlin/org/springframework/messaging/rsocket/RSocketRequesterExtensions.kt b/spring-messaging/src/main/kotlin/org/springframework/messaging/rsocket/RSocketRequesterExtensions.kt index 38b1ed7a52..b9317865aa 100644 --- a/spring-messaging/src/main/kotlin/org/springframework/messaging/rsocket/RSocketRequesterExtensions.kt +++ b/spring-messaging/src/main/kotlin/org/springframework/messaging/rsocket/RSocketRequesterExtensions.kt @@ -62,7 +62,7 @@ suspend fun RSocketRequester.Builder.connectWebSocketAndAwait(uri: URI): RSocket * @param producer the source of payload data value(s). This must be a * [Publisher] or another producer adaptable to a * [Publisher] via [org.springframework.core.ReactiveAdapterRegistry] - * @param the type of values to be produced + * @param T the type of values to be produced * @author Sebastien Deleuze * @since 5.2 */ @@ -74,7 +74,7 @@ inline fun RSocketRequester.RequestSpec.dataWithType(producer: * variant leveraging Kotlin reified type parameters. This extension is not subject to type * erasure and retains actual generic type arguments. * @param publisher the source of payload data value(s) - * @param the type of values to be produced + * @param T the type of values to be produced * @author Sebastien Deleuze * @since 5.2 */ @@ -86,7 +86,7 @@ inline fun RSocketRequester.RequestSpec.dataWithType(publisher * variant leveraging Kotlin reified type parameters. This extension is not subject to type * erasure and retains actual generic type arguments. * @param flow the [Flow] to write to the request - * @param the source of payload data value(s) + * @param T the source of payload data value(s) * @author Sebastien Deleuze * @since 5.2 */ diff --git a/spring-test/src/main/kotlin/org/springframework/test/web/reactive/server/WebTestClientExtensions.kt b/spring-test/src/main/kotlin/org/springframework/test/web/reactive/server/WebTestClientExtensions.kt index 81a1cd5672..079b05cbdb 100644 --- a/spring-test/src/main/kotlin/org/springframework/test/web/reactive/server/WebTestClientExtensions.kt +++ b/spring-test/src/main/kotlin/org/springframework/test/web/reactive/server/WebTestClientExtensions.kt @@ -40,7 +40,7 @@ inline fun > RequestBodySpec.body(publisher: S * @param producer the producer to write to the request. This must be a * [Publisher] or another producer adaptable to a * [Publisher] via [org.springframework.core.ReactiveAdapterRegistry] - * @param the type of the elements contained in the producer + * @param T the type of the elements contained in the producer * @author Sebastien Deleuze * @since 5.2 */ @@ -52,7 +52,7 @@ inline fun RequestBodySpec.body(producer: Any): RequestHeaders * leveraging Kotlin reified type parameters. This extension is not subject to type * erasure and retains actual generic type arguments. * @param flow the [Flow] to write to the request - * @param the type of the elements contained in the publisher + * @param T the type of the elements contained in the publisher * @author Sebastien Deleuze * @since 5.2 */ diff --git a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/client/WebClientExtensions.kt b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/client/WebClientExtensions.kt index 1700ebfd80..d35063a588 100644 --- a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/client/WebClientExtensions.kt +++ b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/client/WebClientExtensions.kt @@ -43,7 +43,7 @@ inline fun > RequestBodySpec.body(publisher: S * leveraging Kotlin reified type parameters. This extension is not subject to type * erasure and retains actual generic type arguments. * @param flow the [Flow] to write to the request - * @param the type of the elements contained in the flow + * @param T the type of the elements contained in the flow * @author Sebastien Deleuze * @since 5.2 */ @@ -57,7 +57,7 @@ inline fun RequestBodySpec.body(flow: Flow): RequestHeaders * @param producer the producer to write to the request. This must be a * [Publisher] or another producer adaptable to a * [Publisher] via [org.springframework.core.ReactiveAdapterRegistry] - * @param the type of the elements contained in the producer + * @param T the type of the elements contained in the producer * @author Sebastien Deleuze * @since 5.2 */ diff --git a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/ServerResponseExtensions.kt b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/ServerResponseExtensions.kt index 826070773d..ae7b683cec 100644 --- a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/ServerResponseExtensions.kt +++ b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/ServerResponseExtensions.kt @@ -42,7 +42,7 @@ inline fun ServerResponse.BodyBuilder.body(publisher: Publishe * @param producer the producer to write to the response. This must be a * [Publisher] or another producer adaptable to a * [Publisher] via [org.springframework.core.ReactiveAdapterRegistry] - * @param the type of the elements contained in the producer + * @param T the type of the elements contained in the producer * @author Sebastien Deleuze * @since 5.2 */