From 6e7c3f2893db75d935ff80895f2def3ac687bb9a Mon Sep 17 00:00:00 2001 From: Ryan Scheidter Date: Fri, 15 Feb 2019 09:08:55 -0600 Subject: [PATCH] Fix a typo in RouterFunctionDsl Javadoc Closes gh-22419 --- .../web/reactive/function/server/RouterFunctionDsl.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/RouterFunctionDsl.kt b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/RouterFunctionDsl.kt index 1672c434a8..cf471db1fd 100644 --- a/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/RouterFunctionDsl.kt +++ b/spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server/RouterFunctionDsl.kt @@ -26,7 +26,7 @@ import java.net.URI /** * Allow to create easily a `RouterFunction` from a Kotlin router DSL based - * on the same building blocks than the Java one ([RouterFunction], [RequestPredicate], + * on the same building blocks as the Java one ([RouterFunction], [RequestPredicate], * [HandlerFunction]). * * Example: @@ -554,4 +554,4 @@ open class RouterFunctionDsl(private val init: RouterFunctionDsl.() -> Unit) : ( } } -} \ No newline at end of file +}