Skip to content

Commit 5d94733

Browse files
committed
spelling: ambiguously
Signed-off-by: Josh Soref <[email protected]>
1 parent 3a1a94b commit 5d94733

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

javascript/ql/lib/semmle/javascript/security/BadTagFilterQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ predicate isBadRegexpFilter(HtmlMatchingRegExp regexp, string msg) {
6565
regexp.matches("<!-- foo --!>") and
6666
exists(int a, int b | a != b |
6767
regexp.fillsCaptureGroup("<!-- foo -->", a) and
68-
// <!-- foo --> might be ambigously parsed (matching both capture groups), and that is ok here.
68+
// <!-- foo --> might be ambiguously parsed (matching both capture groups), and that is ok here.
6969
regexp.fillsCaptureGroup("<!-- foo --!>", b) and
7070
not regexp.fillsCaptureGroup("<!-- foo --!>", a) and
7171
msg =

python/ql/lib/semmle/python/security/BadTagFilterQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ predicate isBadRegexpFilter(HtmlMatchingRegExp regexp, string msg) {
6565
regexp.matches("<!-- foo --!>") and
6666
exists(int a, int b | a != b |
6767
regexp.fillsCaptureGroup("<!-- foo -->", a) and
68-
// <!-- foo --> might be ambigously parsed (matching both capture groups), and that is ok here.
68+
// <!-- foo --> might be ambiguously parsed (matching both capture groups), and that is ok here.
6969
regexp.fillsCaptureGroup("<!-- foo --!>", b) and
7070
not regexp.fillsCaptureGroup("<!-- foo --!>", a) and
7171
msg =

ruby/ql/lib/codeql/ruby/security/BadTagFilterQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ predicate isBadRegexpFilter(HtmlMatchingRegExp regexp, string msg) {
6565
regexp.matches("<!-- foo --!>") and
6666
exists(int a, int b | a != b |
6767
regexp.fillsCaptureGroup("<!-- foo -->", a) and
68-
// <!-- foo --> might be ambigously parsed (matching both capture groups), and that is ok here.
68+
// <!-- foo --> might be ambiguously parsed (matching both capture groups), and that is ok here.
6969
regexp.fillsCaptureGroup("<!-- foo --!>", b) and
7070
not regexp.fillsCaptureGroup("<!-- foo --!>", a) and
7171
msg =

0 commit comments

Comments
 (0)