Fix more “a”/“an” typos

This commit is contained in:
Frank Steffahn
2021-08-22 16:20:58 +02:00
parent bf88b113ea
commit be9d2699ca
15 changed files with 17 additions and 17 deletions

View File

@@ -45,7 +45,7 @@ impl<T, const N: usize> IntoIter<T, N> {
/// use std::array;
///
/// for value in array::IntoIter::new([1, 2, 3, 4, 5]) {
/// // The type of `value` is a `i32` here, instead of `&i32`
/// // The type of `value` is an `i32` here, instead of `&i32`
/// let _: i32 = value;
/// }
/// ```