From 05627e20a242ae719bf427f750e68310286f692f Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 5 Nov 2020 14:45:02 +0100 Subject: [PATCH] Fix typo in SetColumns() documentation --- grid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grid.go b/grid.go index 718c9e0..c646b98 100644 --- a/grid.go +++ b/grid.go @@ -93,7 +93,7 @@ func NewGrid() *Grid { // following call will result in columns with widths of 30, 10, 15, 15, and 30 // cells: // -// grid.Setcolumns(30, 10, -1, -1, -2) +// grid.SetColumns(30, 10, -1, -1, -2) // // If a primitive were then placed in the 6th and 7th column, the resulting // widths would be: 30, 10, 10, 10, 20, 10, and 10 cells.