Skip to content

Commit ab55854

Browse files
authored
chore: fix typos in comment & document (#5569)
1 parent 97b917e commit ab55854

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@
383383
- Fix vscode-material-icons in the filer picker
384384
- Fix global settings export
385385
- Respect user-configured terminal integration timeout (thanks @KJ7LNW)
386-
- Contex condensing enhancements (thanks @SannidhyaSah)
386+
- Context condensing enhancements (thanks @SannidhyaSah)
387387

388388
## [3.18.1] - 2025-05-22
389389

@@ -895,7 +895,7 @@
895895

896896
## [3.10.1] - 2025-03-20
897897

898-
- Make the suggested responses optional to not break overriden system prompts
898+
- Make the suggested responses optional to not break overridden system prompts
899899

900900
## [3.10.0] - 2025-03-20
901901

apps/vscode-e2e/src/suite/tools/apply-diff.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ function validateInput(input) {
224224
},
225225
text: `Use apply_diff on the file ${testFile.name} to change "Hello World" to "Hello Universe". The file already exists with this content:
226226
${testFile.content}\nAssume the file exists and you can modify it directly.`,
227-
}) //Temporary meassure since list_files ignores all the files inside a tmp workspace
227+
}) //Temporary measure since list_files ignores all the files inside a tmp workspace
228228

229229
console.log("Task ID:", taskId)
230230
console.log("Test filename:", testFile.name)

apps/web-roo-code/src/app/evals/evals.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export function Evals({
203203
</ScatterChart>
204204
</ChartContainer>
205205
<div className="py-4 text-xs opacity-50">
206-
(Note: Very expensive models are exluded from the scatter plot.)
206+
(Note: Very expensive models are excluded from the scatter plot.)
207207
</div>
208208
</TableCaption>
209209
</Table>

packages/evals/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Start the evals service:
2929
docker compose -f packages/evals/docker-compose.yml --profile server --profile runner up --build --scale runner=0
3030
```
3131

32-
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/):
32+
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/):
3333
<img width="1182" alt="Screenshot 2025-06-05 at 12 05 38 PM" src="https://github.com/user-attachments/assets/34f25a59-1362-458c-aafa-25e13cdb2a7a" />
3434

3535
Additionally, you'll find in Docker Desktop that database and redis services are running:

src/core/tools/readFileTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function getReadFileToolDescription(blockName: string, blockParams: any):
3636
}
3737
} catch (error) {
3838
console.error("Failed to parse read_file args XML for description:", error)
39-
return `[${blockName} with unparseable args]`
39+
return `[${blockName} with unparsable args]`
4040
}
4141
} else if (blockParams.path) {
4242
// Fallback for legacy single-path usage

webview-ui/src/utils/vscode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class VSCodeAPIWrapper {
2828
* @remarks When running webview code inside a web browser, postMessage will instead
2929
* log the given message to the console.
3030
*
31-
* @param message Abitrary data (must be JSON serializable) to send to the extension context.
31+
* @param message Arbitrary data (must be JSON serializable) to send to the extension context.
3232
*/
3333
public postMessage(message: WebviewMessage) {
3434
if (this.vsCodeApi) {

0 commit comments

Comments
 (0)