diff options
author | Jessica Del <50999226+OutOfCache@users.noreply.github.com> | 2025-01-08 14:24:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 14:24:39 +0100 |
commit | d07762e47419a1ef892729a420d0c4769b6702a7 (patch) | |
tree | f1076e654afdb8f52f36fa23e4685d9fae24e680 /llvm/utils/UpdateTestChecks/common.py | |
parent | 7004d6815b3a0c6d9c15a19b6927746a97564ba7 (diff) | |
download | llvm-d07762e47419a1ef892729a420d0c4769b6702a7.zip llvm-d07762e47419a1ef892729a420d0c4769b6702a7.tar.gz llvm-d07762e47419a1ef892729a420d0c4769b6702a7.tar.bz2 |
[UpdateTestChecks][NFC] - Fix typos (#121964)
substition -> substitution
in-betweem -> in-between
Diffstat (limited to 'llvm/utils/UpdateTestChecks/common.py')
-rw-r--r-- | llvm/utils/UpdateTestChecks/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/UpdateTestChecks/common.py b/llvm/utils/UpdateTestChecks/common.py index b108a21..e1cc02e 100644 --- a/llvm/utils/UpdateTestChecks/common.py +++ b/llvm/utils/UpdateTestChecks/common.py @@ -1396,7 +1396,7 @@ def find_diff_matching(lhs: List[str], rhs: List[str]) -> List[tuple]: backlinks.append(None) # Commit to names in the matching by walking the backlinks. Recursively - # attempt to fill in more matches in-betweem. + # attempt to fill in more matches in-between. match_idx = table_candidate_idx[-1] while match_idx is not None: current = candidates[match_idx] |