Rollup merge of #116223 - catandcoder:master, r=cjgillot

Fix misuses of a vs an

Fixes the misuse of "a" vs "an", according to English grammatical
expectations and using https://www.a-or-an.com/
This commit is contained in:
Jubilee
2023-10-05 00:56:29 -07:00
committed by GitHub
16 changed files with 18 additions and 18 deletions

View File

@@ -162,7 +162,7 @@ pub enum StabilityLevel {
is_soft: bool,
/// If part of a feature is stabilized and a new feature is added for the remaining parts,
/// then the `implied_by` attribute is used to indicate which now-stable feature previously
/// contained a item.
/// contained an item.
///
/// ```pseudo-Rust
/// #[unstable(feature = "foo", issue = "...")]