From c7fe3e1d29fa8ac2bfc9874df3eb45f36256dfa0 Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Mon, 15 Dec 2025 20:35:58 -0500 Subject: [PATCH] Fix doc comment typo --- src/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status.rs b/src/status.rs index a5a8cffd39..a679a688c7 100644 --- a/src/status.rs +++ b/src/status.rs @@ -151,7 +151,7 @@ impl StatusOptions { self.flag(raw::GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS, include) } - /// Indicates that the given paths should be treated as literals paths, note + /// Indicates that the given paths should be treated as literals paths, not /// patterns. pub fn disable_pathspec_match(&mut self, include: bool) -> &mut StatusOptions { self.flag(raw::GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH, include)