We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 658eba2 commit affb823Copy full SHA for affb823
src/uu/du/Cargo.toml
@@ -1,3 +1,4 @@
1
+# spell-checker:ignore ahash
2
[package]
3
name = "uu_du"
4
description = "du ~ (uutils) display disk usage"
src/uu/du/src/du_cached.rs
@@ -1,4 +1,4 @@
-// spell-checker:ignore mpsc
+// spell-checker:ignore mpsc ahash systime mtimes
//! High-performance cached disk usage calculator
//!
//! This module implements an mtime-based caching strategy based on
src/uu/du/src/du_parallel.rs
@@ -1,5 +1,5 @@
// Parallel directory traversal implementation for du
+// spell-checker:ignore mpsc hashset
use rayon::prelude::*;
5
use std::collections::HashSet;
0 commit comments