From 5859590b5d2345afa57a6fbfa7a6c827488d4baa Mon Sep 17 00:00:00 2001 From: Taus Date: Mon, 23 Mar 2026 15:07:31 +0100 Subject: [PATCH] Python: Fix typo in comment Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../ql/src/Variables/SuspiciousUnusedLoopIterationVariable.ql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ql/src/Variables/SuspiciousUnusedLoopIterationVariable.ql b/python/ql/src/Variables/SuspiciousUnusedLoopIterationVariable.ql index 18c83240667..d252742d67c 100644 --- a/python/ql/src/Variables/SuspiciousUnusedLoopIterationVariable.ql +++ b/python/ql/src/Variables/SuspiciousUnusedLoopIterationVariable.ql @@ -53,7 +53,7 @@ predicate call_to_range(DataFlow::Node node) { call_to_range(node.(DataFlow::CallCfgNode).getArg(0)) } -/** Whether n is a use of a variable that is a not effectively a constant. */ +/** Whether n is a use of a variable that is not effectively a constant. */ predicate use_of_non_constant(Name n) { exists(Variable var | n.uses(var) and