summaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <pierre.henri.symoneaux@gmail.com>2019-08-25 20:19:20 +0200
committerPierre-Henri Symoneaux <pierre.henri.symoneaux@gmail.com>2019-08-25 20:19:20 +0200
commit2040ec8190518db84d1651c596950488750ab567 (patch)
treed318f6a8e2b59c5c208f62c92ad9d9cd65d28d3a /src/cell.rs
parentcb6a033d7a212674c356c1a8365511abe2b4fca9 (diff)
Fixed a few clippy warnings (but not all)
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 795c4c7..a60a905 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -231,8 +231,7 @@ impl Cell {
for a in &self.style {
match out.attr(*a) {
Ok(..) | Err(::term::Error::NotSupported) | Err(::term::Error::ColorOutOfRange) => {
- ()
- } // Ignore unsupported atrributes
+ } // Ignore unsupported attributes
Err(e) => return Err(term_error_to_io_error(e)),
};
}