Skip to content

Commit c562d67

Browse files
authored
Merge pull request github#2500 from shati-patel/typo
Fix typos
2 parents b940f3e + f40b1b5 commit c562d67

File tree

1 file changed

+3
-3
lines changed
  • csharp/ql/src/semmle/code/csharp/dataflow

1 file changed

+3
-3
lines changed

csharp/ql/src/semmle/code/csharp/dataflow/SSA.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1765,7 +1765,7 @@ module Ssa {
17651765
*
17661766
* The write is live because of the implicit entry definition `def`, which can be
17671767
* reached using one or more calls (as indicated by `additionalCalls`), starting
1768-
* from call `c`. That is, data can flow from the write at index `i` into the the
1768+
* from call `c`. That is, data can flow from the write at index `i` into the
17691769
* callable containing `def`.
17701770
*
17711771
* Example:
@@ -2329,7 +2329,7 @@ module Ssa {
23292329
* ```
23302330
*
23312331
* If this definition is the update of `i` on line 5, then the value may be read inside
2332-
* `M2` via the the call on line 6.
2332+
* `M2` via the call on line 6.
23332333
*/
23342334
predicate isCapturedVariableDefinitionFlowIn(
23352335
ImplicitEntryDefinition def, ControlFlow::Nodes::ElementNode c, boolean additionalCalls
@@ -2356,7 +2356,7 @@ module Ssa {
23562356
* ```
23572357
*
23582358
* If this definition is the update of `i` on line 4, then the value may be read outside
2359-
* of `M2` via the the call on line 5.
2359+
* of `M2` via the call on line 5.
23602360
*/
23612361
predicate isCapturedVariableDefinitionFlowOut(
23622362
ImplicitCallDefinition cdef, boolean additionalCalls

0 commit comments

Comments
 (0)