From dea8b9d98c98c741e585ae40e3044cc7c185e286 Mon Sep 17 00:00:00 2001 From: Joseph Adamita Date: Mon, 8 Apr 2019 10:48:04 -0400 Subject: [PATCH] Fixed spelling error on line 72 Corrected "grap" to "grab" --- C# Coding Standards and Naming Conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C# Coding Standards and Naming Conventions.md b/C# Coding Standards and Naming Conventions.md index 95b69ee..1b9547f 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -69,7 +69,7 @@ public const string ShippingType = "DropShip"; public const string SHIPPINGTYPE = "DropShip"; ``` -***Why: consistent with the Microsoft's .NET Framework. Caps grap too much attention.*** +***Why: consistent with the Microsoft's .NET Framework. Caps grab too much attention.*** #### 5. Use meaningful names for variables. The following example uses seattleCustomers for customers who are located in Seattle: