From ef8dc8fe112602e5441b3c39c24cb9288d1d11e0 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Mon, 12 Aug 2024 14:09:35 +0200 Subject: [PATCH] fix: Typo in dynamic completion doc comment --- clap_complete/src/dynamic/candidate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clap_complete/src/dynamic/candidate.rs b/clap_complete/src/dynamic/candidate.rs index 517e287918e..0b4719ff64d 100644 --- a/clap_complete/src/dynamic/candidate.rs +++ b/clap_complete/src/dynamic/candidate.rs @@ -32,7 +32,7 @@ impl CompletionCandidate { /// Set the visibility of the completion candidate /// - /// Only shown when no there is no visible candidate for completing the current argument. + /// Only shown when there is no visible candidate for completing the current argument. pub fn hide(mut self, hidden: bool) -> Self { self.hidden = hidden; self