From a0a38da287944dd1fc624d82e111f45f79fca6a5 Mon Sep 17 00:00:00 2001 From: Marijn van der Zee Date: Fri, 3 Feb 2012 09:56:53 +0100 Subject: [PATCH 1/2] Reference `Spring.Web.Mvc3` instead of `Spring.Web.Mvc` --- doc/reference/src/web-mvc3.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/reference/src/web-mvc3.xml b/doc/reference/src/web-mvc3.xml index 794e954c..1eaff545 100644 --- a/doc/reference/src/web-mvc3.xml +++ b/doc/reference/src/web-mvc3.xml @@ -94,10 +94,9 @@ SpringMvcApplication class as shown in the following snippet: - public class MvcApplication : SpringMvcApplication - { - - } + public class MvcApplication : SpringMvcApplication +{ +} Note that the SpringMvcApplication class is abstract so that developers may only use it indirectly as a superclass @@ -117,7 +116,7 @@ <configSections> <sectionGroup name="spring"> - <section name="context" type="Spring.Context.Support.MvcContextHandler, Spring.Web.Mvc"/> + <section name="context" type="Spring.Context.Support.MvcContextHandler, Spring.Web.Mvc3"/> </sectionGroup> </configSections> From e315dfc4fa724fc7430cbc8f8b57457fa1dd2286 Mon Sep 17 00:00:00 2001 From: Marijn van der Zee Date: Fri, 3 Feb 2012 10:05:26 +0100 Subject: [PATCH 2/2] References the Mvc3 QuickStart by the exact name used in the distribution --- doc/reference/src/web-mvc3.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/reference/src/web-mvc3.xml b/doc/reference/src/web-mvc3.xml index 1eaff545..f47b147d 100644 --- a/doc/reference/src/web-mvc3.xml +++ b/doc/reference/src/web-mvc3.xml @@ -64,9 +64,9 @@ - The Spring.NET distribution ships with a Web.Mvc Quick Start - application. The Web.Mvc QuickStart is the best way to see how to - integrate Spring.Web.Mvc into your own ASP.NET MVC applications. + The Spring.NET distribution ships with a Spring.Mvc3QuickStart + application. This QuickStart is the best way to see how to integrate + Spring.Web.Mvc into your own ASP.NET MVC applications.