From e4c547e197f1145eca93bf4f922a8cab6cbd63f3 Mon Sep 17 00:00:00 2001 From: Scott Register Date: Tue, 5 Jul 2016 08:22:16 -0700 Subject: [PATCH] Balance Parentheses (#1605) Small typo fix --- aspnet/tutorials/first-mvc-app/adding-view.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/tutorials/first-mvc-app/adding-view.rst b/aspnet/tutorials/first-mvc-app/adding-view.rst index c8030d4023..ab8ed62cb7 100644 --- a/aspnet/tutorials/first-mvc-app/adding-view.rst +++ b/aspnet/tutorials/first-mvc-app/adding-view.rst @@ -14,7 +14,7 @@ Currently the ``Index`` method returns a string with a message that is hard-code :lines: 102-105 :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/HelloWorld* folder, and then **Add > New Item**.