From 2b3b1c689780ccdf6042ff9caaf0aa5aeeb62bea Mon Sep 17 00:00:00 2001 From: Patrick Roche Date: Thu, 23 May 2019 08:23:39 -0400 Subject: [PATCH] Fix typo in C# conventions doc --- 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 1b9547f..8688f5b 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -378,7 +378,7 @@ public delegate void ReadBarcodeEventHandler(object sender, ReadBarcodeEventArgs ***Why: consistent with the Microsoft's .NET Framework and easy to read.*** -#### 23. Do not create names of parametres in methods (or constructors) which differ only by the register: +#### 23. Do not create names of parameters in methods (or constructors) which differ only by the register: ```csharp // Avoid