diff --git a/README.md b/README.md index 63a8a7cc..54086fbf 100644 --- a/README.md +++ b/README.md @@ -337,17 +337,17 @@ The Chrome DevTools MCP server supports the following configuration option: - **Type:** array - **`--categoryEmulation`** - Set to false to exlcude tools related to emulation. + Set to false to exclude tools related to emulation. - **Type:** boolean - **Default:** `true` - **`--categoryPerformance`** - Set to false to exlcude tools related to performance. + Set to false to exclude tools related to performance. - **Type:** boolean - **Default:** `true` - **`--categoryNetwork`** - Set to false to exlcude tools related to network. + Set to false to exclude tools related to network. - **Type:** boolean - **Default:** `true` diff --git a/src/cli.ts b/src/cli.ts index 5e811ba2..b7d7306b 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -142,17 +142,17 @@ export const cliOptions = { categoryEmulation: { type: 'boolean', default: true, - describe: 'Set to false to exlcude tools related to emulation.', + describe: 'Set to false to exclude tools related to emulation.', }, categoryPerformance: { type: 'boolean', default: true, - describe: 'Set to false to exlcude tools related to performance.', + describe: 'Set to false to exclude tools related to performance.', }, categoryNetwork: { type: 'boolean', default: true, - describe: 'Set to false to exlcude tools related to network.', + describe: 'Set to false to exclude tools related to network.', }, } satisfies Record;