BurntSushi / walkdir

Rust library for walking directories recursively.
The Unlicense
1.21k stars 106 forks source link

Remove Unnecessary 'fs' Prefix from FileType #187

Open GeorgeBerdovskiy opened 9 months ago

GeorgeBerdovskiy commented 9 months ago

Hello! I only modified line 158 of src/dent.rs. I noticed that FileType has an fs prefix, which is probably unnecessary as FileType is already imported by include std::fs::{self, FileType}. On line 42, FileType is used without specifying fs.

The crate builds and all tests seem to pass. I apologize if I overlooked some kind of contribution requirement - please let me know what I'm missing and I'll address it 🙂