Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

Commit 9e0b8d3

Browse files
committed
Replace curly quotes with ascii straight quotes
Markdown takes care of rendering these to a curly quote.
1 parent 2a77483 commit 9e0b8d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mapping.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ impl Mapping {
7676
index.index_into_mut(self)
7777
}
7878

79-
/// Gets the given keys corresponding entry in the map for insertion and/or
79+
/// Gets the given key's corresponding entry in the map for insertion and/or
8080
/// in-place manipulation.
8181
#[inline]
8282
pub fn entry(&mut self, k: Value) -> Entry {
@@ -89,7 +89,7 @@ impl Mapping {
8989
/// Removes and returns the value corresponding to the key from the map.
9090
///
9191
/// This is equivalent to [`.swap_remove(index)`][Self::swap_remove],
92-
/// replacing this entrys position with the last element. If you need to
92+
/// replacing this entry's position with the last element. If you need to
9393
/// preserve the relative order of the keys in the map, use
9494
/// [`.shift_remove(key)`][Self::shift_remove] instead.
9595
#[inline]
@@ -100,7 +100,7 @@ impl Mapping {
100100
/// Remove and return the key-value pair.
101101
///
102102
/// This is equivalent to [`.swap_remove_entry(index)`][Self::swap_remove_entry],
103-
/// replacing this entrys position with the last element. If you need to
103+
/// replacing this entry's position with the last element. If you need to
104104
/// preserve the relative order of the keys in the map, use
105105
/// [`.shift_remove_entry(key)`][Self::shift_remove_entry] instead.
106106
#[inline]

0 commit comments

Comments
 (0)