Skip to content

Commit 8af224a

Browse files
authored
Remove unused import in 2nd README.md example (#23)
1 parent 9881854 commit 8af224a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli-table/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To get a `Display` trait implementation of `TableStruct`, use `display()` functi
5656
of `TableDisplay` which implements `Display` trait.
5757

5858
```rust
59-
use cli_table::{format::Justify, print_stdout, Cell, Style, Table};
59+
use cli_table::{format::Justify, Cell, Style, Table};
6060

6161
let table = vec![
6262
vec!["Tom".cell(), 10.cell().justify(Justify::Right)],

cli-table/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//! of `TableDisplay` which implements `Display` trait.
5454
//!
5555
//! ```rust
56-
//! use cli_table::{format::Justify, print_stdout, Cell, Style, Table};
56+
//! use cli_table::{format::Justify, Cell, Style, Table};
5757
//!
5858
//! let table = vec![
5959
//! vec!["Tom".cell(), 10.cell().justify(Justify::Right)],

0 commit comments

Comments
 (0)