From 8995405e2dd3e580254fc3c436d83e345a66b159 Mon Sep 17 00:00:00 2001 From: Zohair <52404521+Zohair-coder@users.noreply.github.com> Date: Wed, 27 Sep 2023 07:08:28 -0400 Subject: [PATCH] Fixed typo in csharp.md (#180) --- docs/contributing/code-style/csharp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/code-style/csharp.md b/docs/contributing/code-style/csharp.md index 6ed150e1..47fd07de 100644 --- a/docs/contributing/code-style/csharp.md +++ b/docs/contributing/code-style/csharp.md @@ -51,7 +51,7 @@ this naming convention: ## Constructors - Multiple **constructors** should be separated by a newline (empty line between) -- Constructors with multiple arguments should have arguments should be included 1 per line +- Constructors with multiple arguments should have 1 argument listed per line - Empty constructors, when necessary, should be all 1-line, i.e., `public ClassName() { }` ## Control Blocks