Skip to content

Commit 01b96b9

Browse files
authored
docs: Fix typo in config_option_update - should be singular (#707)
## Summary The `session-config-options.mdx` page uses `"config_options_update"` (plural) as the `sessionUpdate` discriminator value, but the schema (`schema.md`) defines it as `"config_option_update"` (singular) ## References - Schema definition uses `ConfigOptionUpdate` → `"config_option_update"` - Both Claude and Codex ACP send `"config_option_update"` (singular): - [claude-agent-acp](https://github.com/zed-industries/claude-agent-acp) (`src/acp-agent.ts`) - [codex-acp](https://github.com/zed-industries/codex-acp) (`src/thread.rs` via `SessionUpdate::ConfigOptionUpdate`)
1 parent e2fae0d commit 01b96b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/protocol/session-config-options.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ The Agent **MUST** respond with the complete list of all configuration options a
227227

228228
### From the Agent
229229

230-
The Agent can also change configuration options and notify the Client by sending a `config_options_update` session notification:
230+
The Agent can also change configuration options and notify the Client by sending a `config_option_update` session notification:
231231

232232
```json
233233
{
@@ -236,7 +236,7 @@ The Agent can also change configuration options and notify the Client by sending
236236
"params": {
237237
"sessionId": "sess_abc123def456",
238238
"update": {
239-
"sessionUpdate": "config_options_update",
239+
"sessionUpdate": "config_option_update",
240240
"configOptions": [
241241
{
242242
"id": "mode",

0 commit comments

Comments
 (0)