From 4f04d619b5eaacced2878d57cf335cd5275d88f8 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 17 Nov 2021 20:39:56 +0100 Subject: [PATCH] Fix terminology in comment In computing, brackets are []. () are called parentheses. Signed-off-by: Gilles Peskine --- tests/scripts/check_names.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/check_names.py b/tests/scripts/check_names.py index acf60db46..e1341107a 100755 --- a/tests/scripts/check_names.py +++ b/tests/scripts/check_names.py @@ -537,7 +537,7 @@ class CodeParser(): continue # If the line contains only space-separated alphanumeric - # characters (or underscore, asterisk, or, open bracket), + # characters (or underscore, asterisk, or open parenthesis), # and nothing else, high chance it's a declaration that # continues on the next line if re.search(r"^([\w\*\(]+\s+)+$", line):