Skip to content

Commit 2dccd39

Browse files
author
Max Schaefer
committed
JavaScript: Fix two comments.
1 parent 28d8011 commit 2dccd39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

javascript/ql/src/semmle/javascript/dataflow/TaintTracking.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ module TaintTracking {
443443
(mce.getMethodName() = "fromCharCode" or mce.getMethodName() = "fromCodePoint")
444444
)
445445
or
446-
// `(encode|decode)URI(Component)?` and `escape` propagate taint
446+
// `(encode|decode)URI(Component)?` propagate taint
447447
exists(DataFlow::CallNode c, string name |
448448
this = c and
449449
c = DataFlow::globalVarRef(name).getACall() and

javascript/ql/src/semmle/javascript/security/dataflow/DOM.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides predicates for reasoning about DOM types.
2+
* Provides predicates for reasoning about DOM types and methods.
33
*/
44

55
import javascript

0 commit comments

Comments
 (0)