Skip to content

Commit adf0bb7

Browse files
committed
Cleanup
1 parent 80e7af9 commit adf0bb7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/protocol/schema.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ This capability is not part of the spec yet, and may be removed or changed at an
700700

701701
## <span class="font-mono">CommandInfo</span>
702702

703-
Information about a custom command.
703+
Information about a command.
704704

705705
**Type:** Object
706706

rust/agent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ pub struct ListCommandsResponse {
402402
pub commands: Vec<CommandInfo>,
403403
}
404404

405-
/// Information about a custom command.
405+
/// Information about a command.
406406
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
407407
#[serde(rename_all = "camelCase")]
408408
pub struct CommandInfo {

schema/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
"x-docs-ignore": true
301301
},
302302
"CommandInfo": {
303-
"description": "Information about a custom command.",
303+
"description": "Information about a command.",
304304
"properties": {
305305
"description": {
306306
"description": "Human-readable description of what the command does.",

typescript/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ export interface ListCommandsResponse {
882882
commands: CommandInfo[];
883883
}
884884
/**
885-
* Information about a custom command.
885+
* Information about a command.
886886
*/
887887
export interface CommandInfo {
888888
/**

0 commit comments

Comments
 (0)