From 7e2022b9a7f342ffcc36a0bd99d3a9909abdb2d1 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 19 Feb 2013 11:48:55 -0800 Subject: [PATCH] Fix @RequestMapping regex reference doc example Issue: SPR-10244 --- src/reference/docbook/mvc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/docbook/mvc.xml b/src/reference/docbook/mvc.xml index 7fbd023ac8..fb7d5e96cb 100644 --- a/src/reference/docbook/mvc.xml +++ b/src/reference/docbook/mvc.xml @@ -1062,7 +1062,7 @@ public class RelativePathUriTemplateController { example: -@RequestMapping("/spring-web/{symbolicName:[a-z-]+}-{version:\\d\\.\\d\\.\\d}.{extension:\\.[a-z]}") +@RequestMapping("/spring-web/{symbolicName:[a-z-]+}-{version:\\d\\.\\d\\.\\d}{extension:\\.[a-z]+}") public void handle(@PathVariable String version, @PathVariable String extension) { // ... }