File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/ql/src/semmle/python/security Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments