aboutsummaryrefslogtreecommitdiff
path: root/device.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-15 17:44:18 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-15 17:44:18 +0200
commit0d794ada3be092678430077991b323472214e44c (patch)
tree349c18a081fa0dbe00d8b0a05a0a3aee2b43759d /device.go
parent6d305ebe1e4086329bcaa137b44a5f452cbd7193 (diff)
Refactor Device
Diffstat (limited to 'device.go')
-rw-r--r--device.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/device.go b/device.go
index ea8c416..eff1333 100644
--- a/device.go
+++ b/device.go
@@ -2,7 +2,7 @@ package main
import "bufio"
-type Devicer interface {
+type Device interface {
Close()
Handle() *bufio.ReadWriter
}