File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Usage: dust -f (Count files instead of diskspace)
69
69
Usage: dust -t (Group by filetype)
70
70
Usage: dust -z 10M (min-size, Only include files larger than 10M)
71
71
Usage: dust -e regex (Only include files matching this regex (eg dust -e "\.png$" would match png files))
72
- Usage: dust -v regex (Exculde files matching this regex (eg dust -v "\.png$" would ignore png files))
72
+ Usage: dust -v regex (Exclude files matching this regex (eg dust -v "\.png$" would ignore png files))
73
73
74
74
```
75
75
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ static INIT: Once = Once::new();
17
17
/// Copy to /tmp dir - we assume that the formatting of the /tmp partition
18
18
/// is consistent. If the tests fail your /tmp filesystem probably differs
19
19
fn copy_test_data ( dir : & str ) {
20
- // First remove the existing directory - just incase it is there and has incorrect data
20
+ // First remove the existing directory - just in case it is there and has incorrect data
21
21
let last_slash = dir. rfind ( '/' ) . unwrap ( ) ;
22
22
let last_part_of_dir = dir. chars ( ) . skip ( last_slash) . collect :: < String > ( ) ;
23
23
let _ = Command :: new ( "rm" )
@@ -196,7 +196,7 @@ pub fn test_apparent_size() {
196
196
}
197
197
198
198
fn apparent_size_output ( ) -> Vec < String > {
199
- // The apparent directory sizes are too unpredictable and system dependant to try and match
199
+ // The apparent directory sizes are too unpredictable and system dependent to try and match
200
200
let files = r#"
201
201
0B ┌── a_file
202
202
6B ├── hello_file
You can’t perform that action at this time.
0 commit comments