Polishing

This commit is contained in:
Sam Brannen
2023-07-15 12:53:12 +02:00
parent 8629182822
commit e6d360c1c6
11 changed files with 82 additions and 62 deletions

View File

@@ -742,7 +742,7 @@ reliance on it.
[[webflux-config-blocking-execution]]
== Blocking Execution
The WebFlux Java config lets you to customize blocking execution in WebFlux.
The WebFlux Java config allows you to customize blocking execution in WebFlux.
You can have blocking controller methods called on a separate thread by providing
an `Executor` such as the
@@ -777,7 +777,7 @@ Kotlin::
@Override
fun configureBlockingExecution(configurer: BlockingExecutionConfigurer) {
val executor = ...
val executor = ...
configurer.setExecutor(executor)
}
}