Skip to content

Commit 2a29e26

Browse files
RasmusWLyoff
andauthored
Python: Fix grammar
Co-authored-by: yoff <lerchedahl@gmail.com>
1 parent 483bd0e commit 2a29e26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/ql/src/experimental/dataflow/internal/TaintTrackingPrivate.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ predicate localAdditionalTaintStep(DataFlow::Node nodeFrom, DataFlow::Node nodeT
3535
/**
3636
* Holds if taint can flow from `nodeFrom` to `nodeTo` with a step related to concatenation.
3737
*
38-
* Note that since we cannot easily distinguish interesting types (like string, list, tuple), so
38+
* Note that since we cannot easily distinguish interesting types (like string, list, tuple),
3939
* we consider any `+` operation to propagate taint. After consulting with the JS team, this
40-
* should doesn't sound like it is a big problem in practice.
40+
* doesn't sound like it is a big problem in practice.
4141
*/
4242
predicate concatStep(DataFlow::CfgNode nodeFrom, DataFlow::CfgNode nodeTo) {
4343
exists(BinaryExprNode add | add = nodeTo.getNode() |

0 commit comments

Comments
 (0)