Skip to content

Commit 5859590

Browse files
tausbnCopilot
andauthored
Python: Fix typo in comment
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 434b397 commit 5859590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/Variables/SuspiciousUnusedLoopIterationVariable.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ predicate call_to_range(DataFlow::Node node) {
5353
call_to_range(node.(DataFlow::CallCfgNode).getArg(0))
5454
}
5555

56-
/** Whether n is a use of a variable that is a not effectively a constant. */
56+
/** Whether n is a use of a variable that is not effectively a constant. */
5757
predicate use_of_non_constant(Name n) {
5858
exists(Variable var |
5959
n.uses(var) and

0 commit comments

Comments
 (0)