From ed467f542aecfee63e27b07f29f84e239854ff05 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 15 Aug 2016 21:06:30 +0200 Subject: [PATCH] Fix formatting in Web MVC chapter of reference manual --- 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 d284627aac3..ebbc65ba51d 100644 --- a/src/asciidoc/web-mvc.adoc +++ b/src/asciidoc/web-mvc.adoc @@ -793,7 +793,7 @@ to the value of a URI template variable: } ---- -The URI Template " `/owners/{ownerId}`" specifies the variable name `ownerId`. When the +The URI Template ++"/owners/{ownerId}"++ specifies the variable name `ownerId`. When the controller handles this request, the value of `ownerId` is set to the value found in the appropriate part of the URI. For example, when a request comes in for `/owners/fred`, the value of `ownerId` is `fred`.