Update python/ql/src/semmle/python/RegexTreeView.qll

Co-authored-by: Taus <tausbn@github.com>
This commit is contained in:
yoff
2021-08-30 18:38:38 +02:00
committed by GitHub
parent 34d7772a0d
commit 13c5857241

View File

@@ -22,7 +22,7 @@ newtype TRegExpParent =
re.sequence(start, end) and
exists(seqChild(re, start, end, 1)) // if a sequence does not have more than one element, it should be treated as that element instead.
} or
/** An alternatio term */
/** An alternation term */
TRegExpAlt(Regex re, int start, int end) {
re.alternation(start, end) and
exists(int part_end |