Balance Parentheses (#1605)

Small typo fix
pull/1621/head
Scott Register 2016-07-05 08:22:16 -07:00 committed by Rick Anderson
parent 00aac4dff3
commit e4c547e197
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Currently the ``Index`` method returns a string with a message that is hard-code
:lines: 102-105 :lines: 102-105
:dedent: 8 :dedent: 8
The ``Index`` method above uses a view template to generate an HTML response to the browser. Controller methods (also known as action methods, such as the ``Index`` method above, generally return an ``IActionResult`` (or a class derived from ``ActionResult``), not primitive types like string. The ``Index`` method above uses a view template to generate an HTML response to the browser. Controller methods (also known as action methods) such as the ``Index`` method above, generally return an ``IActionResult`` (or a class derived from ``ActionResult``), not primitive types like string.
- Right click on the *Views* folder, and then **Add > New Folder** and name the folder *HelloWorld*. - Right click on the *Views* folder, and then **Add > New Folder** and name the folder *HelloWorld*.
- Right click on the *Views/HelloWorld* folder, and then **Add > New Item**. - Right click on the *Views/HelloWorld* folder, and then **Add > New Item**.