From 212e98bc3eb83d89088ffdb5c63bcbeaaf4742ed Mon Sep 17 00:00:00 2001 From: Marijn Schouten Date: Wed, 13 Apr 2022 13:24:28 +0200 Subject: [PATCH] Add missing article to fix "few" to "a few". Add missing article to fix "few" (not many) to "a few" (some). --- 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 c7a9a8183789..52c087847151 100644 --- a/library/core/src/convert/mod.rs +++ b/library/core/src/convert/mod.rs @@ -108,7 +108,7 @@ pub const fn identity(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.