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 @@ -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]
You can’t perform that action at this time.
0 commit comments