about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-10-13 21:55:11 +0900
committerGitHub <noreply@github.com>2021-10-13 21:55:11 +0900
commitf759fff44758c9971e4d6194b6cdcc448908af8f (patch)
treedd7dfe80189d86f57490d0b232e1b7b64feef7f6
parentcd5fe938e7078169a674d8e797164b208d9f25c8 (diff)
parente56d89ae6299f6820afc046c0d040594ce2ff8d6 (diff)
downloadrust-f759fff44758c9971e4d6194b6cdcc448908af8f.tar.gz
rust-f759fff44758c9971e4d6194b6cdcc448908af8f.zip
Rollup merge of #89781 - Wilfred:patch-2, r=JohnTitor
Add missing words in `Infallible` docs

This sentence was previously incomplete.
-rw-r--r--library/core/src/convert/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/convert/mod.rs b/library/core/src/convert/mod.rs
index 83a73d9cbe5..fb8305273a8 100644
--- a/library/core/src/convert/mod.rs
+++ b/library/core/src/convert/mod.rs
@@ -664,7 +664,7 @@ impl AsMut<str> 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 {}