Fix typo.

This commit is contained in:
Geoffrey White
2025-02-24 13:59:22 +00:00
parent fcb470330c
commit 24411b61e9
2 changed files with 2 additions and 2 deletions

View File

@@ -24,6 +24,6 @@
| PostUpdateNode should not be the target of local flow | 0 | | PostUpdateNode should not be the target of local flow | 0 |
| PostUpdateNode should not equal its pre-update node | 0 | | PostUpdateNode should not equal its pre-update node | 0 |
| Read step does not preserve enclosing callable | 0 | | Read step does not preserve enclosing callable | 0 |
| Speculative step already hasM Model | 0 | | Speculative step already has Model | 0 |
| Store step does not preserve enclosing callable | 0 | | Store step does not preserve enclosing callable | 0 |
| Type compatibility predicate is not reflexive | 0 | | Type compatibility predicate is not reflexive | 0 |

View File

@@ -441,7 +441,7 @@ module MakeConsistency<
result = result =
count(DataFlowCall call, Node receiver | lambdaCallEnclosingCallableMismatch(call, receiver)) count(DataFlowCall call, Node receiver | lambdaCallEnclosingCallableMismatch(call, receiver))
or or
type = "Speculative step already hasM Model" and type = "Speculative step already has Model" and
result = count(Node n1, Node n2 | speculativeStepAlreadyHasModel(n1, n2, _)) result = count(Node n1, Node n2 | speculativeStepAlreadyHasModel(n1, n2, _))
} }
} }