summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
}