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