Fix typo in write_todos methodology instructions (#13411)

This commit is contained in:
Smetalo
2025-11-20 00:29:12 +01:00
committed by GitHub
parent b2a2ea3633
commit 0f845407f1
3 changed files with 3 additions and 3 deletions

View File

@@ -182,7 +182,7 @@ class RecursiveFileSearch implements FileSearch {
this.resultCache = new ResultCache(this.allFiles);
if (!this.options.disableFuzzySearch) {
// The v1 algorithm is much faster since it only looks at the first
// occurence of the pattern. We use it for search spaces that have >20k
// occurrence of the pattern. We use it for search spaces that have >20k
// files, because the v2 algorithm is just too slow in those cases.
this.fzf = new AsyncFzf(this.allFiles, {
fuzzy: this.allFiles.length > 20000 ? 'v1' : 'v2',