diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc
index 4c8b224faaf..55f1e074238 100644
--- a/src/asciidoc/index.adoc
+++ b/src/asciidoc/index.adoc
@@ -32906,7 +32906,7 @@ For example given:
[subs="verbatim,quotes"]
----
@RequestMapping("/people/{id}/addresses")
- public class MyController {
+ public class PersonAddressController {
@RequestMapping("/{country}")
public HttpEntity getAddress(@PathVariable String country) { ... }
@@ -32920,7 +32920,7 @@ The following JSP code can prepare a link:
----
<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
...
-Get Person
+Get Address
----