summaryrefslogtreecommitdiff
path: root/area.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-23 21:04:47 -0400
committerPietro Gagliardi <[email protected]>2014-03-23 21:04:47 -0400
commitcd49e05da860f70dd7f78c1b625cf21c3d603f93 (patch)
tree5ed8159576876bf7242a7b01e1229bdf5b116eef /area.go
parenta41f58286646057d1c022e260662944efd7b85ce (diff)
Fixed a slight documentation error in area.go.
Diffstat (limited to 'area.go')
-rw-r--r--area.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/area.go b/area.go
index 73453c8..9e76f7f 100644
--- a/area.go
+++ b/area.go
@@ -55,7 +55,7 @@ type AreaHandler interface {
Mouse(e MouseEvent)
// Key is called when the Area receives a keyboard event.
- // You are allowed to do nothing except return false in this handler (to ignore mouse events).
+ // You are allowed to do nothing except return false in this handler (to ignore keyboard events).
// Do not do nothing but return true; this may have unintended consequences.
// See KeyEvent for details.
Key(e KeyEvent) bool