From 26f006509f38ca40d7677c728cb5e560ae92aae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Tue, 20 Jun 2023 20:56:47 +0200 Subject: [PATCH] Polish CoWebFilter javadoc --- .../kotlin/org/springframework/web/server/CoWebFilter.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt b/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt index 25f38ced880..3e8181d8bbf 100644 --- a/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt +++ b/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt @@ -23,7 +23,7 @@ import reactor.core.publisher.Mono /** * Kotlin-specific implementation of the [WebFilter] interface that allows for - * using co-routines. + * using coroutines. * * @author Arjen Poutsma * @since 6.0.5 @@ -41,7 +41,7 @@ abstract class CoWebFilter : WebFilter { /** * Process the Web request and (optionally) delegate to the next - * `WebFilter` through the given [WebFilterChain]. + * [WebFilter] through the given [WebFilterChain]. * @param exchange the current server exchange * @param chain provides a way to delegate to the next filter */ @@ -50,7 +50,7 @@ abstract class CoWebFilter : WebFilter { } /** - * Kotlin-specific adaption of [WebFilterChain] that allows for co-routines. + * Kotlin-specific adaption of [WebFilterChain] that allows for coroutines. * * @author Arjen Poutsma * @since 6.0.5