Skip to content

Commit

Permalink
Rename file: dirwalker -> dir_walker
Browse files Browse the repository at this point in the history
Felt like this file was missing an '_'
  • Loading branch information
bootandy committed Jul 16, 2021
1 parent f219a75 commit ed3902f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ use std::collections::HashSet;

use self::display::draw_it;
use clap::{App, AppSettings, Arg};
use dirwalker::walk_it;
use dirwalker::WalkData;
use dir_walker::walk_it;
use dir_walker::WalkData;
use filter::{get_biggest, get_by_depth};
use std::cmp::max;
use std::path::PathBuf;
use terminal_size::{terminal_size, Height, Width};
use utils::get_filesystem_devices;
use utils::simplify_dir_names;

mod dirwalker;
mod dir_walker;
mod display;
mod display_node;
mod filter;
Expand Down

0 comments on commit ed3902f

Please sign in to comment.