Correct misspelling in 2nd paragraph (#1769)

Change 'seemlessly' to 'seamlessly'.
pull/1591/merge
M. Shawn Dillon 2016-08-09 14:06:04 -04:00 committed by Rick Anderson
parent 365a3a1788
commit aac3229993
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ By `Rick Anderson`_
In this section you're going to modify the ``HelloWorldController`` class to use Razor view template files to cleanly encapsulate the process of generating HTML responses to a client.
You'll create a view template file using Razor. Razor-based view templates have a *.cshtml* file extension, and provide an elegant way to create HTML output using C#. Razor seemlessly blends C# and HTML, minimizing the number of characters and keystrokes required when writing a view template, and enables a fast, fluid coding workflow.
You'll create a view template file using Razor. Razor-based view templates have a *.cshtml* file extension, and provide an elegant way to create HTML output using C#. Razor seamlessly blends C# and HTML, minimizing the number of characters and keystrokes required when writing a view template, and enables a fast, fluid coding workflow.
Currently the ``Index`` method returns a string with a message that is hard-coded in the controller class. Change the ``Index`` method to return a View object, as shown in the following code: