1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 13:37:48 +00:00

fmt: clean up imports

This commit is contained in:
Terts Diepraam 2023-11-28 12:24:18 +01:00
parent 96ca5e609e
commit 8a49453057
2 changed files with 3 additions and 5 deletions

View file

@ -13,8 +13,8 @@ use uucore::display::Quotable;
use uucore::error::{FromIo, UResult, USimpleError};
use uucore::{format_usage, help_about, help_usage, show_warning};
use self::linebreak::break_lines;
use self::parasplit::ParagraphStream;
use linebreak::break_lines;
use parasplit::ParagraphStream;
mod linebreak;
mod parasplit;

View file

@ -5,10 +5,8 @@
// spell-checker:ignore (ToDO) INFTY MULT accum breakwords linebreak linebreaking linebreaks linelen maxlength minlength nchars ostream overlen parasplit plass posn powf punct signum slen sstart tabwidth tlen underlen winfo wlen wordlen
use std::cmp;
use std::i64;
use std::io::{BufWriter, Stdout, Write};
use std::mem;
use std::{cmp, i64, mem};
use uucore::crash;