Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit bb78824

Browse files
committed
Fix forgotten colon in keyboard down err
1 parent ddd7c2a commit bb78824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/keyboard.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (k *Keyboard) down(key string) error {
140140
WithUnmodifiedText(text).
141141
WithAutoRepeat(autoRepeat)
142142
if err := action.Do(cdp.WithExecutor(k.ctx, k.session)); err != nil {
143-
return fmt.Errorf("cannot execute dispatch key event down %w", err)
143+
return fmt.Errorf("cannot execute dispatch key event down: %w", err)
144144
}
145145

146146
return nil

0 commit comments

Comments
 (0)