summaryrefslogtreecommitdiff
path: root/grid.go
diff options
context:
space:
mode:
Diffstat (limited to 'grid.go')
-rw-r--r--grid.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/grid.go b/grid.go
index 8c534b5..5cd7d1a 100644
--- a/grid.go
+++ b/grid.go
@@ -22,7 +22,7 @@ type Grid interface {
// Add adds a Control to the Grid.
// If this is the first Control in the Grid, it is merely added; nextTo should be nil.
// Otherwise, it is placed relative to nextTo.
- // If nextTo is nil, it is placed next to the previously added Control,
+ // If nextTo is nil, it is placed next to the previously added Control.
// The effect of adding the same Control multiple times is undefined, as is the effect of adding a Control next to one not present in the Grid.
Add(control Control, nextTo Control, side Side, xexpand bool, xalign Align, yexpand bool, yalign Align)
}