summaryrefslogtreecommitdiffstats
path: root/src/decorations.rs
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2018-08-22 22:29:12 +0200
committersharkdp <davidpeter@web.de>2018-08-22 22:29:12 +0200
commit9316f2a758d015ced23af421e1257f5b926f25c4 (patch)
tree777de7cabdf2939c9659984fed1577d8b9528080 /src/decorations.rs
parentc884c3cc125400d65f705aee9403acc6aa8da416 (diff)
Major refactoring and cleanup
Diffstat (limited to 'src/decorations.rs')
-rw-r--r--src/decorations.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/decorations.rs b/src/decorations.rs
index 40c4d80e..9d779438 100644
--- a/src/decorations.rs
+++ b/src/decorations.rs
@@ -14,7 +14,6 @@ pub trait Decoration {
fn width(&self) -> usize;
}
-// Line number decoration.
pub struct LineNumberDecoration {
color: Style,
cached_wrap: DecorationText,
@@ -65,7 +64,6 @@ impl Decoration for LineNumberDecoration {
}
}
-// Line changes decoration.
pub struct LineChangesDecoration {
cached_none: DecorationText,
cached_added: DecorationText,
@@ -121,7 +119,6 @@ impl Decoration for LineChangesDecoration {
}
}
-// Grid border decoration.
pub struct GridBorderDecoration {
cached: DecorationText,
}