Fix typo in SetColumns() documentation

This commit is contained in:
Michael Vetter 2020-11-05 14:45:02 +01:00
parent d551c850a7
commit 05627e20a2
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func NewGrid() *Grid {
// following call will result in columns with widths of 30, 10, 15, 15, and 30 // following call will result in columns with widths of 30, 10, 15, 15, and 30
// cells: // 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 // 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. // widths would be: 30, 10, 10, 10, 20, 10, and 10 cells.