diff --git a/CHANGELOG.md b/CHANGELOG.md index ca9b46d596..342e209180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -383,7 +383,7 @@ - Fix vscode-material-icons in the filer picker - Fix global settings export - Respect user-configured terminal integration timeout (thanks @KJ7LNW) -- Contex condensing enhancements (thanks @SannidhyaSah) +- Context condensing enhancements (thanks @SannidhyaSah) ## [3.18.1] - 2025-05-22 @@ -895,7 +895,7 @@ ## [3.10.1] - 2025-03-20 -- Make the suggested responses optional to not break overriden system prompts +- Make the suggested responses optional to not break overridden system prompts ## [3.10.0] - 2025-03-20 diff --git a/apps/vscode-e2e/src/suite/tools/apply-diff.test.ts b/apps/vscode-e2e/src/suite/tools/apply-diff.test.ts index 64d019aef0..6e6dbc5995 100644 --- a/apps/vscode-e2e/src/suite/tools/apply-diff.test.ts +++ b/apps/vscode-e2e/src/suite/tools/apply-diff.test.ts @@ -224,7 +224,7 @@ function validateInput(input) { }, text: `Use apply_diff on the file ${testFile.name} to change "Hello World" to "Hello Universe". The file already exists with this content: ${testFile.content}\nAssume the file exists and you can modify it directly.`, - }) //Temporary meassure since list_files ignores all the files inside a tmp workspace + }) //Temporary measure since list_files ignores all the files inside a tmp workspace console.log("Task ID:", taskId) console.log("Test filename:", testFile.name) diff --git a/apps/web-roo-code/src/app/evals/evals.tsx b/apps/web-roo-code/src/app/evals/evals.tsx index b94bc62224..5921112c46 100644 --- a/apps/web-roo-code/src/app/evals/evals.tsx +++ b/apps/web-roo-code/src/app/evals/evals.tsx @@ -203,7 +203,7 @@ export function Evals({
- (Note: Very expensive models are exluded from the scatter plot.) + (Note: Very expensive models are excluded from the scatter plot.)
diff --git a/packages/evals/README.md b/packages/evals/README.md index a33c7a81cf..b26945dc8c 100644 --- a/packages/evals/README.md +++ b/packages/evals/README.md @@ -29,7 +29,7 @@ Start the evals service: docker compose -f packages/evals/docker-compose.yml --profile server --profile runner up --build --scale runner=0 ``` -The initial build process can take a minute or two. Upon success you should see ouput indicating that a web service is running on [localhost:3000](http://localhost:3000/): +The initial build process can take a minute or two. Upon success you should see output indicating that a web service is running on [localhost:3000](http://localhost:3000/): Screenshot 2025-06-05 at 12 05 38 PM Additionally, you'll find in Docker Desktop that database and redis services are running: diff --git a/src/core/tools/readFileTool.ts b/src/core/tools/readFileTool.ts index 1459838fe0..6de8dd5642 100644 --- a/src/core/tools/readFileTool.ts +++ b/src/core/tools/readFileTool.ts @@ -36,7 +36,7 @@ export function getReadFileToolDescription(blockName: string, blockParams: any): } } catch (error) { console.error("Failed to parse read_file args XML for description:", error) - return `[${blockName} with unparseable args]` + return `[${blockName} with unparsable args]` } } else if (blockParams.path) { // Fallback for legacy single-path usage diff --git a/webview-ui/src/utils/vscode.ts b/webview-ui/src/utils/vscode.ts index 2b2b25593b..2cc0a58909 100644 --- a/webview-ui/src/utils/vscode.ts +++ b/webview-ui/src/utils/vscode.ts @@ -28,7 +28,7 @@ class VSCodeAPIWrapper { * @remarks When running webview code inside a web browser, postMessage will instead * log the given message to the console. * - * @param message Abitrary data (must be JSON serializable) to send to the extension context. + * @param message Arbitrary data (must be JSON serializable) to send to the extension context. */ public postMessage(message: WebviewMessage) { if (this.vsCodeApi) {