Replace curly quotes with ascii straight quotes

Markdown takes care of rendering these to a curly quote.
This commit is contained in:
David Tolnay 2024-01-28 19:30:26 -08:00
parent 2a77483b23
commit 9e0b8d337b
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ impl Mapping {
index.index_into_mut(self)
}
/// Gets the given keys corresponding entry in the map for insertion and/or
/// Gets the given key's corresponding entry in the map for insertion and/or
/// in-place manipulation.
#[inline]
pub fn entry(&mut self, k: Value) -> Entry {
@ -89,7 +89,7 @@ impl Mapping {
/// Removes and returns the value corresponding to the key from the map.
///
/// This is equivalent to [`.swap_remove(index)`][Self::swap_remove],
/// replacing this entrys position with the last element. If you need to
/// replacing this entry's position with the last element. If you need to
/// preserve the relative order of the keys in the map, use
/// [`.shift_remove(key)`][Self::shift_remove] instead.
#[inline]
@ -100,7 +100,7 @@ impl Mapping {
/// Remove and return the key-value pair.
///
/// This is equivalent to [`.swap_remove_entry(index)`][Self::swap_remove_entry],
/// replacing this entrys position with the last element. If you need to
/// replacing this entry's position with the last element. If you need to
/// preserve the relative order of the keys in the map, use
/// [`.shift_remove_entry(key)`][Self::shift_remove_entry] instead.
#[inline]