Skip to content

Commit affb823

Browse files
add the unrecognized words to the spell-checker ignore list
1 parent 658eba2 commit affb823

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/uu/du/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# spell-checker:ignore ahash
12
[package]
23
name = "uu_du"
34
description = "du ~ (uutils) display disk usage"

src/uu/du/src/du_cached.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// spell-checker:ignore mpsc
1+
// spell-checker:ignore mpsc ahash systime mtimes
22
//! High-performance cached disk usage calculator
33
//!
44
//! This module implements an mtime-based caching strategy based on

src/uu/du/src/du_parallel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Parallel directory traversal implementation for du
2-
// spell-checker:ignore mpsc
2+
// spell-checker:ignore mpsc hashset
33

44
use rayon::prelude::*;
55
use std::collections::HashSet;

0 commit comments

Comments
 (0)