summaryrefslogtreecommitdiffstats
path: root/src/format.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/format.rs')
-rw-r--r--src/format.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format.rs b/src/format.rs
index ae72e59..d0d816e 100644
--- a/src/format.rs
+++ b/src/format.rs
@@ -6,7 +6,7 @@ use super::utils::NEWLINE;
/// Alignment for cell's content
#[derive(Clone, Debug, PartialEq, Copy)]
-pub enum Alignment {
+pub enum Alignment {
LEFT,
CENTER,
RIGHT
@@ -155,7 +155,7 @@ impl TableFormat {
}
fn get_sep_for_line(&self, pos: LinePosition) -> &Option<LineSeparator> {
- return match pos {
+ match pos {
LinePosition::Intern => return &self.lsep,
LinePosition::Top => return &self.top_sep,
LinePosition::Bottom => return &self.bottom_sep,
@@ -163,7 +163,7 @@ impl TableFormat {
s @ &Some(_) => s,
&None => &self.lsep
}
- };
+ }
}
/// Print a full line separator to `out`. `col_width` is a slice containing the width of each column