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