From 413d496403edb9522ea6c2c8767347e153dfb3aa Mon Sep 17 00:00:00 2001 From: Jason Zhekov Date: Mon, 4 Jun 2018 20:36:23 +0300 Subject: [PATCH 1/2] Fix format typo in webmvc.adoc --- src/docs/asciidoc/web/webmvc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index c1c79f4504e3..70d9dd049ab8 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -1789,7 +1789,7 @@ supported for all return values, see below for more details. `ResponseEntity`. See <> and <>. | Reactive types -- Reactor, RxJava, or others via `ReactiveAdapterRegistry` -| Alternative to ``DeferredResult` with multi-value streams (e.g. `Flux`, `Observable`) +| Alternative to `DeferredResult` with multi-value streams (e.g. `Flux`, `Observable`) collected to a `List`. For streaming scenarios -- e.g. `text/event-stream`, `application/json+stream` -- From 04dcf4b8455eabeef8c83528d65650b0c6f0e1e2 Mon Sep 17 00:00:00 2001 From: Jason Zhekov Date: Mon, 4 Jun 2018 20:40:36 +0300 Subject: [PATCH 2/2] Update webmvc.adoc --- src/docs/asciidoc/web/webmvc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index 70d9dd049ab8..ca91c6c0a0f0 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -1899,7 +1899,7 @@ To get all matrix variables, use a `MultiValueMap`: @GetMapping("/owners/{ownerId}/pets/{petId}") public void findPet( @MatrixVariable MultiValueMap matrixVars, - @MatrixVariable(pathVar="petId"") MultiValueMap petMatrixVars) { + @MatrixVariable(pathVar="petId") MultiValueMap petMatrixVars) { // matrixVars: ["q" : [11,22], "r" : 12, "s" : 23] // petMatrixVars: ["q" : 22, "s" : 23]