summaryrefslogtreecommitdiff
path: root/input/wrapper.go
diff options
context:
space:
mode:
Diffstat (limited to 'input/wrapper.go')
-rw-r--r--input/wrapper.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/wrapper.go b/input/wrapper.go
index d194f20..6b97e88 100644
--- a/input/wrapper.go
+++ b/input/wrapper.go
@@ -33,7 +33,7 @@ func CreateKeyboard(inputType int) (Keyboard, error) {
uinputKeyboard.Init()
return uinputKeyboard, nil
}
- return nil, fmt.Errorf("Unknown inputType: %d", inputType)
+ return nil, fmt.Errorf("unknown inputType: %d", inputType)
}
func CreateMouse(inputType int) (Mouse, error) {
@@ -45,5 +45,5 @@ func CreateMouse(inputType int) (Mouse, error) {
uinputMouse.Init()
return uinputMouse, nil
}
- return nil, fmt.Errorf("Unknown inputType: %d", inputType)
+ return nil, fmt.Errorf("unknown inputType: %d", inputType)
}