summaryrefslogtreecommitdiff
path: root/stack.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 /stack.go
parent16c2e18949cb7f3594410cb80400ebac540a50a0 (diff)
Changed Grid to SimpleGrid in preparation for a better Grid.
Diffstat (limited to 'stack.go')
-rw-r--r--stack.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stack.go b/stack.go
index 0bd587a..6d9a5ce 100644
--- a/stack.go
+++ b/stack.go
@@ -198,7 +198,7 @@ func (s *stack) getAuxResizeInfo(d *sizing) {
//
// For a Stack, Space can be used to insert spaces in the beginning or middle of Stacks (Stacks by nature handle spaces at the end themselves). In order for this to work properly, make the Space stretchy.
//
-// For a Grid, Space can be used to have an empty cell. A stretchy Grid cell with a Space can be used to anchor the perimeter of a Grid to the respective Window edges without making one of the other controls stretchy instead (leaving empty space in the Window otherwise). Otherwise, you do not need to do anything special for the Space to work (though remember that an entire row or column of Spaces will appear as having height or width zero, respectively, unless one is marked as stretchy).
+// For a SimpleGrid, Space can be used to have an empty cell. A stretchy Grid cell with a Space can be used to anchor the perimeter of a Grid to the respective Window edges without making one of the other controls stretchy instead (leaving empty space in the Window otherwise). Otherwise, you do not need to do anything special for the Space to work (though remember that an entire row or column of Spaces will appear as having height or width zero, respectively, unless one is marked as stretchy).
//
// The value returned from Space() may or may not be unique.
func Space() Control {