fix: missing word in comment

Co-authored-by: Weihang Lo <weihanglo@users.noreply.github.com>
This commit is contained in:
BD103 2024-01-09 12:50:49 -05:00 committed by GitHub
parent 4da5444bb7
commit 529130fe54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ fn du_inner(path: &Path, patterns: &[&str]) -> Result<u64> {
.git_exclude(false);
let walker = builder.build_parallel();
// Platforms like PowerPC don't support AtomicU64, so we a Mutex instead.
// Platforms like PowerPC don't support AtomicU64, so we use a Mutex instead.
//
// See:
// - https://github.com/rust-lang/cargo/pull/12981