summaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
authorpierresy <phsym@msn.com>2016-01-04 21:10:21 +0100
committerpierresy <phsym@msn.com>2016-01-04 21:10:21 +0100
commit51a45a48e53d7cc826ad31cae3cb68acfbb284df (patch)
tree8e41205fa0906f275c1ab25e7cc3f3675c67c13b /src/cell.rs
parentd9c2ce1791a2f653570bee193b4d7b2a9223a568 (diff)
Updated readme with some explanation about table slicing (#10)
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 52e80ff..61bd0d5 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -182,11 +182,6 @@ impl Cell {
try!(write!(out, " "));
try!(print_align(out, self.align, c, ' ', col_width));
return write!(out, " ");
- // return match self.align {
- // Align::LEFT => write!(out, " {: <1$} ", c, col_width),
- // Align::CENTER => write!(out, " {: ^1$} ", c, col_width),
- // Align::RIGHT => write!(out, " {: >1$} ", c, col_width),
- // }
}
/// Apply style then call `print` to print the cell into a terminal