Merge pull request #13 from serra/master

Documentation updates to `Spring.Web.Mvc3` docs
This commit is contained in:
Steve Bohlen
2012-02-03 05:04:15 -08:00

View File

@@ -64,9 +64,9 @@
</listitem>
</itemizedlist>
<para>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.</para>
<para>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.</para>
</sect1>
<sect1 xml:id="web-mvc3-contexts">
@@ -94,10 +94,9 @@
<literal>SpringMvcApplication</literal> class as shown in the following
snippet:</para>
<programlisting language="csharp"> public class MvcApplication : SpringMvcApplication
{
}</programlisting>
<programlisting language="csharp">public class MvcApplication : SpringMvcApplication
{
}</programlisting>
<para>Note that the <literal>SpringMvcApplication</literal> class is
abstract so that developers may only use it indirectly as a superclass
@@ -117,7 +116,7 @@
&lt;configSections&gt;
&lt;sectionGroup name="spring"&gt;
&lt;section name="context" type="Spring.Context.Support.MvcContextHandler, Spring.Web.Mvc"/&gt;
&lt;section name="context" type="Spring.Context.Support.MvcContextHandler, Spring.Web.Mvc3"/&gt;
&lt;/sectionGroup&gt;
&lt;/configSections&gt;