Clean up non-ascii characters

This commit is contained in:
Junegunn Choi
2026-04-19 19:19:43 +09:00
parent 780a624ed7
commit 8b66489987
9 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ func TestWrapLine(t *testing.T) {
t.Errorf("Basic wrap: %v", lines)
}
// Exact fit no wrapping needed
// Exact fit - no wrapping needed
lines = WrapLine("hello", 0, 5, 8, 2)
if len(lines) != 1 || lines[0].Text != "hello" || lines[0].DisplayWidth != 5 {
t.Errorf("Exact fit: %v", lines)