File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments