From 39d9252c9608ee9d4c3bff40f71bb5a0b9a3cdb7 Mon Sep 17 00:00:00 2001 From: Mohamed Awnallah <69568555+mohamedawnallah@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:49:26 +0200 Subject: [PATCH] docs: fix typo "paren" to "parenthesis" [skip ci] --- docs/code_formatting_rules.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/code_formatting_rules.md b/docs/code_formatting_rules.md index 8db66ce20..1c7421b78 100644 --- a/docs/code_formatting_rules.md +++ b/docs/code_formatting_rules.md @@ -124,8 +124,8 @@ myKey := "0214cd678a565041d00e6cf8d62ef8add33b4af4786fb2beb87b366a2e1" + ### Wrapping long function calls When wrapping a line that contains a function call as the unwrapped line exceeds -the column limit, the close paren should be placed on its own line. -Additionally, all arguments should begin in a new line after the open paren. +the column limit, the close parenthesis should be placed on its own line. +Additionally, all arguments should begin in a new line after the open parenthesis. **WRONG** ```go