diff options
| author | Elisha Hollander <just4now666666@gmail.com> | 2023-10-01 13:40:18 +0300 |
|---|---|---|
| committer | donno2048 <just4now666666@gmail.com> | 2024-04-16 22:20:10 +0000 |
| commit | cfa007f1d157134036d2eee8731e98e361a8f34b (patch) | |
| tree | 464f03b944586f4c1dae050fc4f791b4a12e1f12 | |
| parent | f275a3c65bd70c1e1f7beaf66540cc1adf1e88f2 (diff) | |
| download | rust-cfa007f1d157134036d2eee8731e98e361a8f34b.tar.gz rust-cfa007f1d157134036d2eee8731e98e361a8f34b.zip | |
use one `use` for `std`
| -rw-r--r-- | src/tools/tidy/src/style.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/tidy/src/style.rs b/src/tools/tidy/src/style.rs index b5e2c7b41d7..e58e768a31a 100644 --- a/src/tools/tidy/src/style.rs +++ b/src/tools/tidy/src/style.rs @@ -19,8 +19,7 @@ use crate::walk::{filter_dirs, walk}; use regex::{Regex, RegexSet}; -use std::collections::HashMap; -use std::{ffi::OsStr, path::Path}; +use std::{collections::HashMap, ffi::OsStr, path::Path}; /// Error code markdown is restricted to 80 columns because they can be /// displayed on the console with --example. |
