From 7ea3439d3a6540389969717cc6435732278f33eb Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Sat, 26 Jan 2019 05:20:41 -0800 Subject: [PATCH] Fix paragraph --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index b0e6cde..25af8be 100644 --- a/utils.go +++ b/utils.go @@ -203,7 +203,7 @@ func SplitCells(cells []Cell, r rune) [][]Cell { temp = append(temp, cell) } } - if len(splitCells) > 0 { + if len(temp) > 0 { splitCells = append(splitCells, temp) } return splitCells