Skip to content

Commit 7b41797

Browse files
fix
1 parent bbd740f commit 7b41797

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/tool-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269

270270
**Parameters:**
271271

272-
- **includePreviousNavigations** (boolean) _(optional)_: Whether to include request from previous navigations.
272+
- **includePreviousNavigations** (boolean) _(optional)_: Whether to include requests from previous navigations.
273273
- **pageIdx** (integer) _(optional)_: Page number to return (0-based). When omitted, returns the first page.
274274
- **pageSize** (integer) _(optional)_: Maximum number of requests to return. When omitted, returns all requests.
275275
- **resourceTypes** (array) _(optional)_: Filter requests to only return requests of the specified resource types. When omitted or empty, returns all requests.

src/tools/network.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const listNetworkRequests = defineTool({
6666
.boolean()
6767
.default(false)
6868
.optional()
69-
.describe('Whether to include request from previous navigations.'),
69+
.describe('Whether to include requests from previous navigations.'),
7070
},
7171
handler: async (request, response) => {
7272
response.setIncludeNetworkRequests(true, {

0 commit comments

Comments
 (0)