Ensure lines have a maximum of 80 characters

This commit is contained in:
Paolo Lazzari 2023-09-27 08:44:22 +02:00
parent 646f2fcfce
commit 7a95b02d86
1 changed files with 6 additions and 5 deletions

11
grid.go
View File

@ -77,11 +77,12 @@ func NewGrid() *Grid {
// SetColumns defines how the columns of the grid are distributed. Each value // SetColumns defines how the columns of the grid are distributed. Each value
// defines the size of one column, starting with the leftmost column. Values // defines the size of one column, starting with the leftmost column. Values
// greater than 0 represent absolute column widths (gaps not included). Values less // greater than 0 represent absolute column widths (gaps not included). Values
// than or equal to 0 represent proportional column widths or fractions of the remaining // less than or equal to 0 represent proportional column widths or fractions of
// free space, where 0 is treated the same as -1. That is, a column with a value // the remaining free space, where 0 is treated the same as -1. That is, a
// of -3 will have three times the width of a column with a value of -1 (or 0). // column with a value of -3 will have three times the width of a column with a
// The minimum width set with SetMinSize() is always observed. // value of -1 (or 0). The minimum width set with SetMinSize() is always
// observed.
// //
// Primitives may extend beyond the columns defined explicitly with this // Primitives may extend beyond the columns defined explicitly with this
// function. A value of 0 is assumed for any undefined column. In fact, if you // function. A value of 0 is assumed for any undefined column. In fact, if you