From bac9f43b66626a3821d9ea34f2fac03444e21f09 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Tue, 14 Jan 2014 14:51:27 -0500 Subject: [PATCH] Fix typo in documentation Issue: SPR-11301 --- src/asciidoc/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index e34602dc9c..82eeaeaad9 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -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