mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-05 02:40:55 -07:00
Fix typo in write_todos methodology instructions (#13411)
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user