Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
remyleone committed Sep 10, 2024
1 parent 03a4939 commit 81e69bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/human/marshal.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ func computeMaxCols(grid [][]string) int {
return maxCols
}
colMaxSize := make([]int, len(grid[0]))
for i := range len(grid) {
for i := range grid {
lineSize := 0
for j := 0; j < maxCols; j++ {
size := len(grid[i][j]) + colPadding
Expand Down

0 comments on commit 81e69bc

Please sign in to comment.