From fe01e5114d2e795f209b84fcd4d62e700c8c1ca4 Mon Sep 17 00:00:00 2001 From: Jason Zhekov Date: Mon, 4 Jun 2018 20:36:23 +0300 Subject: [PATCH] Fix format typo in webmvc.adoc Closes gh-1849 --- src/docs/asciidoc/web/webmvc.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index 2c74b2947e..50aa14710b 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -1790,7 +1790,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` -- @@ -1900,7 +1900,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]