From cce5b5bb5e539ee50001bdd0c11cba23d49336b2 Mon Sep 17 00:00:00 2001 From: George Pollard Date: Sun, 25 Aug 2019 20:00:04 +1200 Subject: [PATCH] Revert ellipsis changes --- src/format/table.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/format/table.rs b/src/format/table.rs index 32afc5df9..badc6bbfb 100644 --- a/src/format/table.rs +++ b/src/format/table.rs @@ -97,9 +97,9 @@ impl TableView { entries[row].truncate(max_num_of_columns); } - headers.push("…".to_string()); + headers.push("...".to_string()); for row in 0..entries.len() { - entries[row].push(("…".to_string(), "c")); // ellipsis is centred + entries[row].push(("...".to_string(), "c")); // ellipsis is centred } }