Skip to content

Commit f3d6222

Browse files
Rollup merge of rust-lang#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/
2 parents 16167c2 + 229c37b commit f3d6222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alloc/src/collections/btree/dedup_sorted_iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use core::iter::Peekable;
22

3-
/// A iterator for deduping the key of a sorted iterator.
3+
/// An iterator for deduping the key of a sorted iterator.
44
/// When encountering the duplicated key, only the last key-value pair is yielded.
55
///
66
/// Used by [`BTreeMap::bulk_build_from_sorted_iter`][1].

0 commit comments

Comments
 (0)