Skip to content

Commit 2f0bb82

Browse files
committed
Python: Tweak wording of qldoc.
1 parent 2edde1f commit 2f0bb82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/ql/src/semmle/python/security/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,14 +1252,14 @@ library module TaintFlowImplementation {
12521252
)
12531253
}
12541254

1255-
/** Holds if `expr` is the operand of a unary `not` expression. */
1255+
/** Gets the operand of a unary `not` expression. */
12561256
private ControlFlowNode not_operand(ControlFlowNode expr) {
12571257
expr.(UnaryExprNode).getNode().getOp() instanceof Not and
12581258
result = expr.(UnaryExprNode).getOperand()
12591259
}
12601260

12611261
/** Holds if `test` is the test in a branch and `use` is that test
1262-
* with all the `not` prefices removed.
1262+
* with all the `not` prefixes removed.
12631263
*/
12641264
private predicate boolean_filter(ControlFlowNode test, ControlFlowNode use) {
12651265
any(PyEdgeRefinement ref).getTest() = test and

0 commit comments

Comments
 (0)