summaryrefslogtreecommitdiffstats
path: root/src/row.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/row.rs')
-rw-r--r--src/row.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/row.rs b/src/row.rs
index 75ce89a..775a3d8 100644
--- a/src/row.rs
+++ b/src/row.rs
@@ -8,7 +8,7 @@ use std::ops::{Index, IndexMut};
use super::Terminal;
use super::utils::NEWLINE;
-use super::cell::Cell;
+use super::Cell;
use super::format::{TableFormat, ColumnPosition};
/// Represent a table row made of cells
@@ -312,16 +312,16 @@ macro_rules! row {
(($($out:tt)*); $style:ident -> $value:expr) => (vec![$($out)* cell!($style -> $value)]);
(($($out:tt)*); $style:ident -> $value:expr, $($n: tt)*) => (row!(($($out)* cell!($style -> $value),); $($n)*));
- ($($content:expr), *) => ($crate::row::Row::new(vec![$(cell!($content)), *])); // This line may not be needed starting from Rust 1.20
- ($style:ident => $($content:expr), *) => ($crate::row::Row::new(vec![$(cell!($style -> $content)), *]));
- ($style:ident => $($content:expr,) *) => ($crate::row::Row::new(vec![$(cell!($style -> $content)), *]));
- ($($content:tt)*) => ($crate::row::Row::new(row!((); $($content)*)));
+ ($($content:expr), *) => ($crate::Row::new(vec![$(cell!($content)), *])); // This line may not be needed starting from Rust 1.20
+ ($style:ident => $($content:expr), *) => ($crate::Row::new(vec![$(cell!($style -> $content)), *]));
+ ($style:ident => $($content:expr,) *) => ($crate::Row::new(vec![$(cell!($style -> $content)), *]));
+ ($($content:tt)*) => ($crate::Row::new(row!((); $($content)*)));
}
#[cfg(test)]
mod tests {
use super::*;
- use cell::Cell;
+ use Cell;
#[test]
fn row_default_empty() {