From b0d06ee699848f7595e3e210385674a1b3ee8c26 Mon Sep 17 00:00:00 2001 From: akshay-zz Date: Tue, 28 Apr 2020 21:42:20 +0530 Subject: [PATCH] Replace PascalCase with camelCase in point 7 --- 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 eb2439a..8ac6e93 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -99,7 +99,7 @@ UriPart uriPart; ***Why: consistent with the Microsoft's .NET Framework and prevents inconsistent abbreviations.*** -#### 7. Do use PascalCasing for abbreviations 3 characters or more (2 chars are both uppercase): +#### 7. Do use camelCasing for abbreviations 3 characters or more (2 chars are both uppercase): ```csharp HtmlHelper htmlHelper;