summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-31 13:02:47 -0400
committerPietro Gagliardi <[email protected]>2014-08-31 13:02:47 -0400
commit2c4eecc9c3ec60f2c2aa709e22cd1fe600caa028 (patch)
tree17a61485f4d4f87f5b994e3e2f799ac0bcbb6fac /window.go
parent16c2e18949cb7f3594410cb80400ebac540a50a0 (diff)
Changed Grid to SimpleGrid in preparation for a better Grid.
Diffstat (limited to 'window.go')
-rw-r--r--window.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.go b/window.go
index d700d14..dc98c1f 100644
--- a/window.go
+++ b/window.go
@@ -3,7 +3,7 @@
package ui
// Window represents a top-level window on screen that contains other Controls.
-// Windows in package ui can only contain one control; the Stack and Grid layout Controls allow you to pack multiple Controls in a Window.
+// Windows in package ui can only contain one control; the Stack, Grid, and SimpleGrid layout Controls allow you to pack multiple Controls in a Window.
// Note that a Window is not itself a Control.
type Window interface {
// Title and SetTitle get and set the Window's title, respectively.