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