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

@@ -21,7 +21,7 @@ export const DEFAULT_CONFIG_PARAMETERS: ConfigParameters = {
};
/**
* Produces a config. Default paramters are set to
* Produces a config. Default parameters are set to
* {@link DEFAULT_CONFIG_PARAMETERS}, optionally, fields can be specified to
* override those defaults.
*/

View File

@@ -41,7 +41,7 @@ DO NOT use this tool for simple tasks that can be completed in less than 2 steps
## Methodology for using this tool
1. Use this todo list list as soon as you receive a user request based on the complexity of the task.
1. Use this todo list as soon as you receive a user request based on the complexity of the task.
2. Keep track of every subtask that you update the list with.
3. Mark a subtask as in_progress before you begin working on it. You should only have one subtask as in_progress at a time.
4. Update the subtask list as you proceed in executing the task. The subtask list is not static and should reflect your progress and current plans, which may evolve as you acquire new information.

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',