Skip to content

Commit 6437bd6

Browse files
authored
Merge pull request #18851 from geoffw0/typo
Fix typo in shared DataFlowImplConsistency.qll
2 parents ddfb168 + 24411b6 commit 6437bd6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust/ql/test/query-tests/diagnostics/DataFlowConsistencyCounts.expected

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
| PostUpdateNode should not be the target of local flow | 0 |
2525
| PostUpdateNode should not equal its pre-update node | 0 |
2626
| Read step does not preserve enclosing callable | 0 |
27-
| Speculative step already hasM Model | 0 |
27+
| Speculative step already has Model | 0 |
2828
| Store step does not preserve enclosing callable | 0 |
2929
| Type compatibility predicate is not reflexive | 0 |

shared/dataflow/codeql/dataflow/internal/DataFlowImplConsistency.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ module MakeConsistency<
441441
result =
442442
count(DataFlowCall call, Node receiver | lambdaCallEnclosingCallableMismatch(call, receiver))
443443
or
444-
type = "Speculative step already hasM Model" and
444+
type = "Speculative step already has Model" and
445445
result = count(Node n1, Node n2 | speculativeStepAlreadyHasModel(n1, n2, _))
446446
}
447447
}

0 commit comments

Comments
 (0)