Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3a4f029

Browse files
committed
fix typo
1 parent a5e789c commit 3a4f029

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

javascript/ql/src/Expressions/TypoDatabase.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5793,6 +5793,8 @@ predicate typos(string wrong, string right) {
57935793
or
57945794
wrong = "paramters" and right = "parameters"
57955795
or
5796+
wrong = "parametarized" and right = "parameterized"
5797+
or
57965798
wrong = "paranthesis" and right = "parenthesis"
57975799
or
57985800
wrong = "paraphenalia" and right = "paraphernalia"

ql/ql/src/codeql_ql/ast/internal/Predicate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ module PredConsistency {
176176
c > 1 and
177177
resolvePredicateExpr(pe, p)
178178
}
179-
// This can happen with parametarized modules
179+
// This can happen with parameterized modules
180180
/*
181181
* query predicate multipleResolveCall(Call call, int c, PredicateOrBuiltin p) {
182182
* c =

ql/ql/src/codeql_ql/style/TypoDatabase.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5793,6 +5793,8 @@ predicate typos(string wrong, string right) {
57935793
or
57945794
wrong = "paramters" and right = "parameters"
57955795
or
5796+
wrong = "parametarized" and right = "parameterized"
5797+
or
57965798
wrong = "paranthesis" and right = "parenthesis"
57975799
or
57985800
wrong = "paraphenalia" and right = "paraphernalia"

0 commit comments

Comments
 (0)