summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-07 00:17:50 -0400
committerPietro Gagliardi <[email protected]>2014-06-07 00:17:50 -0400
commit83e4f055929cd1eb5429bd6b6b9d147c7f50b70e (patch)
treee39789a29031717c62035a76716cab031975f068
parente45a88d86a713a3896b2d8aca0833f870c2e3634 (diff)
Fixed typo in area.go documentation.
-rw-r--r--area.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/area.go b/area.go
index 686f4b8..d78dcd7 100644
--- a/area.go
+++ b/area.go
@@ -68,7 +68,7 @@ type AreaHandler interface {
// You are allowed to do nothing in this handler (to ignore keyboard events).
// See KeyEvent for details.
// If repaint is true, the Area is marked as needing to be redrawn.
- // After handling the key event, package ui will decide whether to perform platform-dependent event chain continuation based on that platform's designated action (so it is not possible to override global key events, such as Alt-Tab this way).
+ // After handling the key event, package ui will decide whether to perform platform-dependent event chain continuation based on that platform's designated action (so it is not possible to override global key events, such as Alt-Tab, this way).
Key(e KeyEvent) (repaint bool)
}