From cd49e05da860f70dd7f78c1b625cf21c3d603f93 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 23 Mar 2014 21:04:47 -0400 Subject: [PATCH] Fixed a slight documentation error in area.go. --- area.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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