@@ -510,7 +510,7 @@ where
510510 N
511511 }
512512
513- /// Return an iterator over the keys of the map, in their order
513+ /// Return an iterator over the keys of the map, in insertion order
514514 ///
515515 /// ```
516516 /// use heapless::FnvIndexMap;
@@ -528,7 +528,7 @@ where
528528 self . core . entries . iter ( ) . map ( |bucket| & bucket. key )
529529 }
530530
531- /// Return an iterator over the values of the map, in their order
531+ /// Return an iterator over the values of the map, in insertion order
532532 ///
533533 /// ```
534534 /// use heapless::FnvIndexMap;
@@ -546,7 +546,7 @@ where
546546 self . core . entries . iter ( ) . map ( |bucket| & bucket. value )
547547 }
548548
549- /// Return an iterator over mutable references to the the values of the map, in their order
549+ /// Return an iterator over mutable references to the the values of the map, in insertion order
550550 ///
551551 /// ```
552552 /// use heapless::FnvIndexMap;
@@ -568,7 +568,7 @@ where
568568 self . core . entries . iter_mut ( ) . map ( |bucket| & mut bucket. value )
569569 }
570570
571- /// Return an iterator over the key-value pairs of the map, in their order
571+ /// Return an iterator over the key-value pairs of the map, in insertion order
572572 ///
573573 /// ```
574574 /// use heapless::FnvIndexMap;
@@ -588,7 +588,7 @@ where
588588 }
589589 }
590590
591- /// Return an iterator over the key-value pairs of the map, in their order
591+ /// Return an iterator over the key-value pairs of the map, in insertion order
592592 ///
593593 /// ```
594594 /// use heapless::FnvIndexMap;
0 commit comments