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 {
1252
1252
)
1253
1253
}
1254
1254
1255
- /** Holds if `expr` is the operand of a unary `not` expression. */
1255
+ /** Gets the operand of a unary `not` expression. */
1256
1256
private ControlFlowNode not_operand ( ControlFlowNode expr ) {
1257
1257
expr .( UnaryExprNode ) .getNode ( ) .getOp ( ) instanceof Not and
1258
1258
result = expr .( UnaryExprNode ) .getOperand ( )
1259
1259
}
1260
1260
1261
1261
/** 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.
1263
1263
*/
1264
1264
private predicate boolean_filter ( ControlFlowNode test , ControlFlowNode use ) {
1265
1265
any ( PyEdgeRefinement ref ) .getTest ( ) = test and
You can’t perform that action at this time.
0 commit comments