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 = {