From 983b5338ed0284388d8ac528821a918cdb3b2634 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 22 Sep 2014 18:36:49 +0200 Subject: [PATCH] Fix typo in documentation Issue: SPR-8025 --- 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 ee675e4c86b..91c34e723a5 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -30263,7 +30263,7 @@ In the example, the `@RequestMapping` is used in a number of places. The first u on the type (class) level, which indicates that all handling methods on this controller are relative to the `/appointments` path. The `get()` method has a further `@RequestMapping` refinement: it only accepts GET requests, meaning that an HTTP GET for -`/appointments` invokes this method. The `post()` has a similar refinement, and the +`/appointments` invokes this method. The `add()` has a similar refinement, and the `getNewForm()` combines the definition of HTTP method and path into one, so that GET requests for `appointments/new` are handled by that method.