From e56d89ae6299f6820afc046c0d040594ce2ff8d6 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Mon, 11 Oct 2021 12:26:27 -0700 Subject: [PATCH] Add missing words in `Infallible` docs This sentence was previously incomplete. --- library/core/src/convert/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/convert/mod.rs b/library/core/src/convert/mod.rs index abeeef1a17e..56d25c80d2e 100644 --- a/library/core/src/convert/mod.rs +++ b/library/core/src/convert/mod.rs @@ -662,7 +662,7 @@ impl AsMut for str { /// /// However there is one case where `!` syntax can be used /// before `!` is stabilized as a full-fledged type: in the position of a function’s return type. -/// Specifically, it is possible implementations for two different function pointer types: +/// Specifically, it is possible to have implementations for two different function pointer types: /// /// ``` /// trait MyTrait {}