Fix typo in documentation

Issue: SPR-11301
This commit is contained in:
Rossen Stoyanchev 2014-01-14 14:51:27 -05:00
parent c9044151f5
commit bac9f43b66
1 changed files with 1 additions and 1 deletions

View File

@ -28772,7 +28772,7 @@ A matrix variable may be defined as optional and a default value specified:
// GET /pets/42
@RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET)
public void findPet(@MatrixVariable(required=true, defaultValue="1") int q) {
public void findPet(@MatrixVariable(required=false, defaultValue="1") int q) {
// q == 1