Skip to content

Commit c826295

Browse files
committed
Fix terminal method doc typo
1 parent 4dcd291 commit c826295

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ All paths in the protocol should be absolute
3535
- Run `npm run check` to make sure the json and zod schemas gets generated properly
3636
- Params and responses docs make it to the schema, but the method-level docs, so make sure to update the typescript library accordingly.
3737

38-
Never write readme files related to the conversation unless explictly asked to.
38+
Never write readme files related to the conversation unless explicitly asked to.

docs/protocol/schema.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ Response to terminal/kill command method
746746
<a id="terminal-output"></a>
747747
### <span class="font-mono">terminal/output</span>
748748

749-
Gets the terminal ouput and exit status
749+
Gets the terminal output and exit status
750750

751751
Returns the current content in the terminal without waiting for the command to exit.
752752
If the command has already exited, the exit status is included.

rust/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub trait Client {
9393
args: CreateTerminalRequest,
9494
) -> impl Future<Output = Result<CreateTerminalResponse, Error>>;
9595

96-
/// Gets the terminal ouput and exit status
96+
/// Gets the terminal output and exit status
9797
///
9898
/// Returns the current content in the terminal without waiting for the command to exit.
9999
/// If the command has already exited, the exit status is included.

0 commit comments

Comments
 (0)