Fixed typo in area.go documentation.

This commit is contained in:
Pietro Gagliardi 2014-06-07 00:17:50 -04:00
parent e45a88d86a
commit 83e4f05592
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}