From 515f120b5c2c7984c8dfa8bafeda42916457b0ba Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sat, 24 Sep 2022 13:23:59 -0400 Subject: [PATCH] doc: fix typo PR #2313 --- crates/ignore/src/walk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ignore/src/walk.rs b/crates/ignore/src/walk.rs index b381197..8625b5f 100644 --- a/crates/ignore/src/walk.rs +++ b/crates/ignore/src/walk.rs @@ -941,7 +941,7 @@ impl Walk { // overheads; an example of this was a bespoke filesystem layer in // Windows that hosted files remotely and would download them on-demand // when particular filesystem operations occurred. Users of this system - // who ensured correct file-type fileters were being used could still + // who ensured correct file-type filters were being used could still // get unnecessary file access resulting in large downloads. if should_skip_entry(&self.ig, ent) { return Ok(true);