summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-09-01 10:20:01 -0400
committerPietro Gagliardi <[email protected]>2014-09-01 10:20:01 -0400
commita9fa3e66c27559820168cae795d9181968f90cda (patch)
tree02c92025c81b55635d97beb92d9fbec1c2abcf53
parent1d67ff52819fada3a167494946f3ef9a6ca729f9 (diff)
Quick typo fix.
-rw-r--r--grid.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/grid.go b/grid.go
index dd420e6..8c534b5 100644
--- a/grid.go
+++ b/grid.go
@@ -11,7 +11,7 @@ import (
// [TODO it can also have Controls spanning multiple rows and columns.]
//
// Each Control in a Grid has associated "expansion" and "alignment" values in both the X and Y direction.
-// Expansion determines whether all cells in the same row/column are given whatever space is left over after figuring how big the rest of the Grid should be.
+// Expansion determines whether all cells in the same row/column are given whatever space is left over after figuring out how big the rest of the Grid should be.
// Alignment determines the position of a Control relative to its cell after computing the above.
// The special alignment Fill can be used to grow a Control to fit its cell.
// Note that expansion and alignment are independent variables.