Skip to content

Commit 400a16a

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/tsdown-0.18.3
2 parents 55134ad + 30d1d73 commit 400a16a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cspell-trie-lib/src/lib/TrieBlob/optimizeNodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function findMatchingNode(node: TrieBlobNode32, candidates: TrieBlobNode32[]): T
101101
function compareNodes(a: TrieBlobNode32, b: TrieBlobNode32): boolean {
102102
if (a.length !== b.length) return false;
103103
let diff = 0;
104-
for (let i = 0; i < a.length && diff == 0; ++i) {
104+
for (let i = 0; i < a.length && diff === 0; ++i) {
105105
diff = a[i] - b[i];
106106
}
107107
return !diff;

0 commit comments

Comments
 (0)