From 798a3574cdddaf2b4e1a32f7013f5fd1703fbbbf Mon Sep 17 00:00:00 2001 From: jrd Date: Fri, 17 Jul 2026 20:36:46 +0000 Subject: [PATCH] Fix typo in CONTRIBUTING.md: concatinations -> concatenations Co-Authored-By: Claude Fable 5 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d16f02122c..9b666045f6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,7 +39,7 @@ Please see the [.clang_format file](https://github.com/jamulussoftware/jamulus/b - Insert a space before and after `(` and `)`. There should be no space between `)` and `;` or before an empty `()`. - Enclose all bodies of `if`, `else`, `while`, `for`, etc. in braces `{` and `}` on separate lines. -- Do not use concatinations in strings with parameters. Instead use substitutions. **Do:** `QString ( tr ( "Hello, %1. Have a nice day!" ) ).arg( getName() )` **Don't:** `tr ( "Hello " ) + getName() + tr ( ". Have a nice day!" )` ...to make translation easier. +- Do not use concatenations in strings with parameters. Instead use substitutions. **Do:** `QString ( tr ( "Hello, %1. Have a nice day!" ) ).arg( getName() )` **Don't:** `tr ( "Hello " ) + getName() + tr ( ". Have a nice day!" )` ...to make translation easier. #### Python Please install and use [pylint](https://pylint.org/) to scan any Python code.