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 55import javascript
66
77/**
8- * Holds if `term` is an ecape class representing e.g. `\d`.
8+ * Holds if `term` is an escape class representing e.g. `\d`.
99 * `clazz` is which character class it represents, e.g. "d" for `\d`.
1010 */
1111predicate isEscapeClass ( RegExpTerm term , string clazz ) {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import python
66import semmle.python.RegexTreeView
77
88/**
9- * Holds if `term` is an ecape class representing e.g. `\d`.
9+ * Holds if `term` is an escape class representing e.g. `\d`.
1010 * `clazz` is which character class it represents, e.g. "d" for `\d`.
1111 */
1212predicate isEscapeClass ( RegExpTerm term , string clazz ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import codeql.Locations
77private import codeql.ruby.ast.Literal as Ast
88
99/**
10- * Holds if `term` is an ecape class representing e.g. `\d`.
10+ * Holds if `term` is an escape class representing e.g. `\d`.
1111 * `clazz` is which character class it represents, e.g. "d" for `\d`.
1212 */
1313predicate isEscapeClass ( RegExpTerm term , string clazz ) {
You can’t perform that action at this time.
0 commit comments