Skip to content

Commit 7396309

Browse files
committed
Merge pull request #1849 from jasssonpet:patch-1
* pr/1849: Fix format typo in webmvc.adoc
2 parents f2ee184 + 6f17c28 commit 7396309

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/web/webmvc.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ supported for all return values, see below for more details.
17891789
`ResponseEntity`. See <<mvc-ann-async>> and <<mvc-ann-async-http-streaming>>.
17901790

17911791
| Reactive types -- Reactor, RxJava, or others via `ReactiveAdapterRegistry`
1792-
| Alternative to ``DeferredResult` with multi-value streams (e.g. `Flux`, `Observable`)
1792+
| Alternative to `DeferredResult` with multi-value streams (e.g. `Flux`, `Observable`)
17931793
collected to a `List`.
17941794

17951795
For streaming scenarios -- e.g. `text/event-stream`, `application/json+stream` --
@@ -1899,7 +1899,7 @@ To get all matrix variables, use a `MultiValueMap`:
18991899
@GetMapping("/owners/{ownerId}/pets/{petId}")
19001900
public void findPet(
19011901
@MatrixVariable MultiValueMap<String, String> matrixVars,
1902-
@MatrixVariable(pathVar="petId"") MultiValueMap<String, String> petMatrixVars) {
1902+
@MatrixVariable(pathVar="petId") MultiValueMap<String, String> petMatrixVars) {
19031903
19041904
// matrixVars: ["q" : [11,22], "r" : 12, "s" : 23]
19051905
// petMatrixVars: ["q" : 22, "s" : 23]

0 commit comments

Comments
 (0)