File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/ql/src/semmle/python/security/strings Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,14 @@ class ExternalJsonKind extends TaintKind {
60
60
}
61
61
}
62
62
63
- /** A kind of "taint", representing a dictionary mapping str->"taint" */
63
+ /** A kind of "taint", representing a dictionary mapping keys to tainted strings. */
64
64
class ExternalStringDictKind extends DictKind {
65
65
ExternalStringDictKind ( ) { this .getValue ( ) instanceof ExternalStringKind }
66
66
}
67
67
68
68
/**
69
- * A kind of "taint", representing a dictionary mapping strings to sequences of
70
- * tainted strings
69
+ * A kind of "taint", representing a dictionary mapping keys to sequences of
70
+ * tainted strings.
71
71
*/
72
72
class ExternalStringSequenceDictKind extends DictKind {
73
73
ExternalStringSequenceDictKind ( ) { this .getValue ( ) instanceof ExternalStringSequenceKind }
You can’t perform that action at this time.
0 commit comments