File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
javascript/ql/lib/semmle/javascript/security/regexp
python/ql/lib/semmle/python/security/regexp
ruby/ql/lib/codeql/ruby/security/regexp Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
import javascript
6
6
7
7
/**
8
- * Holds if `term` is an ecape class representing e.g. `\d`.
8
+ * Holds if `term` is an escape class representing e.g. `\d`.
9
9
* `clazz` is which character class it represents, e.g. "d" for `\d`.
10
10
*/
11
11
predicate isEscapeClass ( RegExpTerm term , string clazz ) {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import python
6
6
import semmle.python.RegexTreeView
7
7
8
8
/**
9
- * Holds if `term` is an ecape class representing e.g. `\d`.
9
+ * Holds if `term` is an escape class representing e.g. `\d`.
10
10
* `clazz` is which character class it represents, e.g. "d" for `\d`.
11
11
*/
12
12
predicate isEscapeClass ( RegExpTerm term , string clazz ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import codeql.Locations
7
7
private import codeql.ruby.ast.Literal as Ast
8
8
9
9
/**
10
- * Holds if `term` is an ecape class representing e.g. `\d`.
10
+ * Holds if `term` is an escape class representing e.g. `\d`.
11
11
* `clazz` is which character class it represents, e.g. "d" for `\d`.
12
12
*/
13
13
predicate isEscapeClass ( RegExpTerm term , string clazz ) {
You can’t perform that action at this time.
0 commit comments