add missing quote

This commit is contained in:
Erik Krogh Kristensen
2020-06-04 19:45:24 +00:00
parent 815671f5d0
commit 96ca4cf7eb

View File

@@ -827,7 +827,7 @@ module TaintTracking {
override predicate appliesTo(Configuration cfg) { any() }
}
/** A check of the form `type x === "undefined`, which sanitized `x` in its "then" branch. */
/** A check of the form `type x === "undefined"`, which sanitized `x` in its "then" branch. */
class TypeOfCheck extends AdditionalSanitizerGuardNode, DataFlow::ValueNode {
Expr x;
override EqualityTest astNode;