From b83bbb330b26a5bc431c9517973dd1ba1d47b3db Mon Sep 17 00:00:00 2001 From: Mojtaba Javan Date: Tue, 15 Jan 2019 17:24:04 +0330 Subject: [PATCH] Minor modifications (#10394) --- aspnetcore/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/index.md b/aspnetcore/index.md index 83183636c6..cc08eade97 100644 --- a/aspnetcore/index.md +++ b/aspnetcore/index.md @@ -4,7 +4,7 @@ author: rick-anderson description: Get an introduction to ASP.NET Core, a cross-platform, high-performance, open-source framework for building modern, cloud-based, Internet-connected applications. ms.author: riande ms.custom: mvc -ms.date: 11/16/2018 +ms.date: 01/15/2019 uid: index --- # Introduction to ASP.NET Core @@ -91,7 +91,7 @@ For more information on using [C# preprocessor directives](/dotnet/csharp/langua ### Regions in sample code -Some sample apps contain sections of code surrounded by [#region](/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-region) and [#end-region](/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-endregion) C# statements. The documentation build system injects these regions into the rendered documentation topics. +Some sample apps contain sections of code surrounded by [#region](/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-region) and [#endregion](/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-endregion) C# statements. The documentation build system injects these regions into the rendered documentation topics. Region names usually contain the word "snippet." The following example shows a region named `snippet_FilterInCode`: @@ -112,7 +112,7 @@ The preceding C# code snippet is referenced in the topic's markdown file with th [!code-csharp[](sample/SampleApp/Program.cs?name=snippet_FilterInCode)] ``` -You may safely ignore (or remove) the `#region` and `#end-region` statements that surround the code. Don't alter the code within these statements if you plan to run the sample scenarios described in the topic. Feel free to alter the code when experimenting with other scenarios. +You may safely ignore (or remove) the `#region` and `#endregion` statements that surround the code. Don't alter the code within these statements if you plan to run the sample scenarios described in the topic. Feel free to alter the code when experimenting with other scenarios. For more information, see [Contribute to the ASP.NET documentation: Code snippets](https://github.com/aspnet/Docs/blob/master/CONTRIBUTING.md#code-snippets).