Skip to content

Commit 2893f73

Browse files
kianmengbootandy
authored andcommitted
Fix typos
Found via `codespell -L crate`.
1 parent 5103ebe commit 2893f73

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Usage: dust -f (Count files instead of diskspace)
6969
Usage: dust -t (Group by filetype)
7070
Usage: dust -z 10M (min-size, Only include files larger than 10M)
7171
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))
7373
7474
```
7575

tests/test_exact_output.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ static INIT: Once = Once::new();
1717
/// Copy to /tmp dir - we assume that the formatting of the /tmp partition
1818
/// is consistent. If the tests fail your /tmp filesystem probably differs
1919
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
2121
let last_slash = dir.rfind('/').unwrap();
2222
let last_part_of_dir = dir.chars().skip(last_slash).collect::<String>();
2323
let _ = Command::new("rm")
@@ -196,7 +196,7 @@ pub fn test_apparent_size() {
196196
}
197197

198198
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
200200
let files = r#"
201201
0B ┌── a_file
202202
6B ├── hello_file

0 commit comments

Comments
 (0)