chore: typo in description (#127)

This commit is contained in:
Yury Semikhatsky 2025-04-02 17:26:45 -07:00 committed by GitHub
parent 2291011dc7
commit 38f038a5dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,7 +102,7 @@ export const hover: Tool = {
const typeSchema = elementSchema.extend({ const typeSchema = elementSchema.extend({
text: z.string().describe('Text to type into the element'), text: z.string().describe('Text to type into the element'),
submit: z.boolean().optional().describe('Whether to submit entered text (press Enter after)'), 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 = { export const type: Tool = {