Fixed missprint in src/main.go

This commit is contained in:
Dmitry Lyukov
2016-03-25 20:53:10 +03:00
parent bcb222bb30
commit 169c57db87

View File

@@ -15,7 +15,7 @@ const (
) )
// Extract pressed keys from bufer buf // Extract pressed keys from bufer buf
// It retruns slice with key numbers in the same order // It returns slice with key numbers in the same order
func GetKeyNumsFromOutput(buf []byte) []uint8 { func GetKeyNumsFromOutput(buf []byte) []uint8 {
return make([]uint8, 0) return make([]uint8, 0)
} }