From 38f038a5dcf3b01999cc445c5d1e035fceb966a2 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 2 Apr 2025 17:26:45 -0700 Subject: [PATCH] chore: typo in description (#127) --- src/tools/snapshot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/snapshot.ts b/src/tools/snapshot.ts index 4646dce..029c2a0 100644 --- a/src/tools/snapshot.ts +++ b/src/tools/snapshot.ts @@ -102,7 +102,7 @@ export const hover: Tool = { const typeSchema = elementSchema.extend({ text: z.string().describe('Text to type into the element'), submit: z.boolean().optional().describe('Whether to submit entered text (press Enter after)'), - slowly: z.boolean().optional().describe('Wether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.'), + slowly: z.boolean().optional().describe('Whether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.'), }); export const type: Tool = {