about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarijn Schouten <hkBst@users.noreply.github.com>2022-04-13 13:24:28 +0200
committerGitHub <noreply@github.com>2022-04-13 13:24:28 +0200
commit212e98bc3eb83d89088ffdb5c63bcbeaaf4742ed (patch)
treede06c94ffc9425cda77412610e191bd79ab8b884
parente3c43e64eceb00e13b1932229aa9b2d774e6af96 (diff)
downloadrust-212e98bc3eb83d89088ffdb5c63bcbeaaf4742ed.tar.gz
rust-212e98bc3eb83d89088ffdb5c63bcbeaaf4742ed.zip
Add missing article to fix "few" to "a few".
Add missing article to fix "few" (not many) to "a few" (some).
-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 c7a9a818378..52c08784715 100644
--- a/library/core/src/convert/mod.rs
+++ b/library/core/src/convert/mod.rs
@@ -108,7 +108,7 @@ pub const fn identity<T>(x: T) -> T {
 /// If you need to do a costly conversion it is better to implement [`From`] with type
 /// `&T` or write a custom function.
 ///
-/// `AsRef` has the same signature as [`Borrow`], but [`Borrow`] is different in few aspects:
+/// `AsRef` has the same signature as [`Borrow`], but [`Borrow`] is different in a few aspects:
 ///
 /// - Unlike `AsRef`, [`Borrow`] has a blanket impl for any `T`, and can be used to accept either
 ///   a reference or a value.