Skip to content

Commit 48be57c

Browse files
committed
Python: Improve QLDoc for ExternalStringDictKind
1 parent b083c01 commit 48be57c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/ql/src/semmle/python/security/strings/External.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ class ExternalJsonKind extends TaintKind {
6060
}
6161
}
6262

63-
/** A kind of "taint", representing a dictionary mapping str->"taint" */
63+
/** A kind of "taint", representing a dictionary mapping keys to tainted strings. */
6464
class ExternalStringDictKind extends DictKind {
6565
ExternalStringDictKind() { this.getValue() instanceof ExternalStringKind }
6666
}
6767

6868
/**
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.
7171
*/
7272
class ExternalStringSequenceDictKind extends DictKind {
7373
ExternalStringSequenceDictKind() { this.getValue() instanceof ExternalStringSequenceKind }

0 commit comments

Comments
 (0)