Skip to content

Commit fe01e51

Browse files
jasssonpetsnicoll
authored andcommitted
Fix format typo in webmvc.adoc
Closes gh-1849
1 parent b5595c3 commit fe01e51

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
@@ -1790,7 +1790,7 @@ supported for all return values, see below for more details.
17901790
`ResponseEntity`. See <<mvc-ann-async>> and <<mvc-ann-async-http-streaming>>.
17911791

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

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

0 commit comments

Comments
 (0)