diff --git a/docs/csharp/programming-guide/namespaces/index.md b/docs/csharp/programming-guide/namespaces/index.md index d9233c2033019..8d17183619a38 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. ## 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