Fix a typo in RouterFunctionDsl Javadoc

Closes gh-22419
This commit is contained in:
Ryan Scheidter 2019-02-15 09:08:55 -06:00 committed by Sebastien Deleuze
parent e307dd58db
commit 6e7c3f2893
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ import java.net.URI
/**
* Allow to create easily a `RouterFunction<ServerResponse>` 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) : (
}
}
}
}