From 562f415f647b5ea36e887076d387b62e0d83da82 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 12:52:00 +0000 Subject: [PATCH] Tidy Bash alphaNumericRegex comment spacing --- actions/ql/lib/codeql/actions/Bash.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/ql/lib/codeql/actions/Bash.qll b/actions/ql/lib/codeql/actions/Bash.qll index a547bf05b77..2caf829383c 100644 --- a/actions/ql/lib/codeql/actions/Bash.qll +++ b/actions/ql/lib/codeql/actions/Bash.qll @@ -791,7 +791,7 @@ module Bash { exists(string r1, string r2, string r3, string r4 | // An alphanumeric character class r1 = "\\[([09azAZ_-]+)\\]" and - // The same as above, followed by a quantifier like `+` or `{20}` + // The same as above, followed by a quantifier like `+` or `{20}` r2 = r1 + "(\\+|\\{\\d+\\})" and // The same as above, possibly with brackets around it r3 = "\\(?" + r2 + "\\)?" and