Browse Source

Merge pull request #1165 from nkjackzhang:patch-6

* pr/1165:
  Fix typo
pull/1163/merge
Stephane Nicoll 10 years ago
parent
commit
f55b4c23fc
  1. 2
      src/asciidoc/web-mvc.adoc

2
src/asciidoc/web-mvc.adoc

@ -1483,7 +1483,7 @@ The following code snippet shows the usage: @@ -1483,7 +1483,7 @@ The following code snippet shows the usage:
Parameters using this annotation are required by default, but you can specify that a
parameter is optional by setting ``@RequestParam``'s `required` attribute to `false`
(e.g., `@RequestParam(path="id", required=false)`).
(e.g., `@RequestParam(name="id", required=false)`).
Type conversion is applied automatically if the target method parameter type is not
`String`. See <<mvc-ann-typeconversion>>.

Loading…
Cancel
Save