Skip to content

Commit 4dcd291

Browse files
committed
Fix typos in docs
1 parent fe276e1 commit 4dcd291

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/overview/architecture.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ The protocol architecture follows several key principles:
1717

1818
When the user tries to connect to an agent, the editor boots the agent sub-process on demand, and all communication happens over stdin/stdout.
1919

20-
Each connection can suppport several concurrent sessions, so you can have multiple trains of thought going on at once.
20+
Each connection can support several concurrent sessions, so you can have multiple trains of thought going on at once.
2121

2222
![Server Client setup](../images/server-client.svg)
2323

24-
ACP makes heavy use of JSON-RPC notifications to allow the agent to stream updates to the UI in real-time. It also uses JSON-RPC's bidrectional requests to allow the agent to make requests of the code editor: for example to request permissions for a tool call.
24+
ACP makes heavy use of JSON-RPC notifications to allow the agent to stream updates to the UI in real-time. It also uses JSON-RPC's bidirectional requests to allow the agent to make requests of the code editor: for example to request permissions for a tool call.
2525

2626
## MCP
2727

docs/protocol/extensibility.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In addition to the requests specified by the protocol, implementations **MAY** e
5555
}
5656
```
5757

58-
Upon receiveing a custom request, implementations **MUST** respond accordingly with the provided `id`:
58+
Upon receiving a custom request, implementations **MUST** respond accordingly with the provided `id`:
5959

6060
```json
6161
{
@@ -70,7 +70,7 @@ Upon receiveing a custom request, implementations **MUST** respond accordingly w
7070
}
7171
```
7272

73-
If the receiveing end doesn't recognize the custom method name, it should respond with the standard "Method not found" error:
73+
If the receiving end doesn't recognize the custom method name, it should respond with the standard "Method not found" error:
7474

7575
```json
7676
{

0 commit comments

Comments
 (0)