Fix non-US english by using "parentheses" instead of "brackets"

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Owen Mansel-Chan
2026-05-12 16:45:50 +01:00
parent f58268064e
commit ea29986c4f

View File

@@ -793,7 +793,7 @@ module Bash {
r1 = "\\[([09azAZ_-]+)\\]" and
// The same as above, followed by a quantifier like `+` or `{20}`
r2 = r1 + "(\\+|\\{\\d+\\})" and
// The same as above, possibly with brackets around it
// The same as above, possibly with parentheses around it
r3 = "\\(?" + r2 + "\\)?" and
// The same as above, possibly with a `?` after it
r4 = r3 + "\\??"