Guides/MVC-Integration.md
... ...
@@ -420,14 +420,13 @@ After Step 11, the Sample_MVCApp should build and work without a problem. To see
420 420
421 421
**a.** Click _Layout.cshtml in Views\Shared\ in Solution Explorer
422 422
423
-**b.** Add an actionlink to Izenda as below
423
+**b.** Add an ActionLink to Izenda as below
424 424
425 425
```html
426 426
<li>@Html.ActionLink("Home", "Index", "Home")</li>
427 427
<li>@Html.ActionLink("About", "About", "Home")</li>
428 428
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
429
-<li>@Html.ActionLink("Izenda", "ReportList", "Reporting")</li>
430
-
429
+<li>@Html.ActionLink("Izenda", "ReportList", "Reporting")</li> //Add this line
431 430
```
432 431
433 432