From 578c4d38360b82eac3d55942891d332f54ecadec Mon Sep 17 00:00:00 2001 From: Petr Kulikov Date: Sat, 24 Nov 2018 00:28:00 +0100 Subject: [PATCH 1/2] Removed not necessary line --- docs/csharp/programming-guide/namespaces/index.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/csharp/programming-guide/namespaces/index.md b/docs/csharp/programming-guide/namespaces/index.md index d9233c2033019..8cb6ca8ebba6c 100644 --- a/docs/csharp/programming-guide/namespaces/index.md +++ b/docs/csharp/programming-guide/namespaces/index.md @@ -32,8 +32,8 @@ Namespaces have the following properties: - They organize large code projects. - They are delimited by using the `.` operator. -- The `using directive` obviates the requirement to specify the name of the namespace for every class. -- The `global` namespace is the "root" namespace: `global::System` will always refer to the .NET Framework namespace `System`. +- The `using` directive obviates the requirement to specify the name of the namespace for every class. +- The `global` namespace is the "root" namespace: `global::System` will always refer to the .NET namespace `System`. ## C# Language Specification @@ -50,4 +50,3 @@ Namespaces have the following properties: - [using Directive](../../language-reference/keywords/using-directive.md) - [:: Operator](../../language-reference/operators/namespace-alias-qualifer.md) - [. Operator](../../language-reference/operators/member-access-operator.md) ->>>>>>> add identifier naming rules From a5954606c2814ba011a49e84f3400ab74e91234b Mon Sep 17 00:00:00 2001 From: Petr Kulikov Date: Sat, 24 Nov 2018 00:33:59 +0100 Subject: [PATCH 2/2] Added xref to the System namespace --- docs/csharp/programming-guide/namespaces/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/programming-guide/namespaces/index.md b/docs/csharp/programming-guide/namespaces/index.md index 8cb6ca8ebba6c..8d17183619a38 100644 --- a/docs/csharp/programming-guide/namespaces/index.md +++ b/docs/csharp/programming-guide/namespaces/index.md @@ -33,7 +33,7 @@ Namespaces have the following properties: - They organize large code projects. - They are delimited by using the `.` operator. - The `using` directive obviates the requirement to specify the name of the namespace for every class. -- The `global` namespace is the "root" namespace: `global::System` will always refer to the .NET namespace `System`. +- The `global` namespace is the "root" namespace: `global::System` will always refer to the .NET namespace. ## C# Language Specification