Browse Source

Polish reference documentation for WebMvc.fn

pull/23681/head
Arjen Poutsma 5 years ago
parent
commit
9ffecc5059
  1. 8
      src/docs/asciidoc/web/webmvc-functional.adoc

8
src/docs/asciidoc/web/webmvc-functional.adoc

@ -51,15 +51,15 @@ as the following example shows: @@ -51,15 +51,15 @@ as the following example shows:
// ...
public Mono<ServerResponse> listPeople(ServerRequest request) {
public ServerResponse listPeople(ServerRequest request) {
// ...
}
public Mono<ServerResponse> createPerson(ServerRequest request) {
public ServerResponse createPerson(ServerRequest request) {
// ...
}
public Mono<ServerResponse> getPerson(ServerRequest request) {
public ServerResponse getPerson(ServerRequest request) {
// ...
}
}
@ -630,7 +630,7 @@ The following example shows a WebFlux Java configuration: @@ -630,7 +630,7 @@ The following example shows a WebFlux Java configuration:
.Kotlin
----
@Configuration
@EnableWebFlux
@EnableMvc
class WebConfig : WebMvcConfigurer {
@Bean

Loading…
Cancel
Save