From 802a4c6d02ebee9b29447f47a739021555757ecf Mon Sep 17 00:00:00 2001 From: nkjackzhang Date: Mon, 12 Sep 2016 17:47:26 +0800 Subject: [PATCH] Remove unnecessary "method" in reference manual (#1166) From context, It seems that the first word "method" is needless, --- src/asciidoc/web-mvc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asciidoc/web-mvc.adoc b/src/asciidoc/web-mvc.adoc index 15e76b60d1..484b2d4e14 100644 --- a/src/asciidoc/web-mvc.adoc +++ b/src/asciidoc/web-mvc.adoc @@ -565,7 +565,7 @@ snippet: You use the `@RequestMapping` annotation to map URLs such as `/appointments` onto an entire class or a particular handler method. Typically the class-level annotation maps a specific request path (or path pattern) onto a form controller, with additional -method-level annotations narrowing the primary mapping for a specific HTTP method +method-level annotations narrowing the primary mapping for a specific HTTP request method ("GET", "POST", etc.) or an HTTP request parameter condition. The following example from the __Petcare__ sample shows a controller in a Spring MVC