Skip to content

Commit 0aa753b

Browse files
Manishearthkennytm
authored andcommitted
1.25.0 -> 1.26.-
1 parent 4360dfa commit 0aa753b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/liballoc/btree/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2128,7 +2128,7 @@ impl<'a, K: Ord, V> Entry<'a, K, V> {
21282128
/// .or_insert(42);
21292129
/// assert_eq!(map["poneyland"], 43);
21302130
/// ```
2131-
#[stable(feature = "entry_and_modify", since = "1.25.0")]
2131+
#[stable(feature = "entry_and_modify", since = "1.26.0")]
21322132
pub fn and_modify<F>(self, mut f: F) -> Self
21332133
where F: FnMut(&mut V)
21342134
{

src/libstd/collections/hash/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2080,7 +2080,7 @@ impl<'a, K, V> Entry<'a, K, V> {
20802080
/// .or_insert(42);
20812081
/// assert_eq!(map["poneyland"], 43);
20822082
/// ```
2083-
#[stable(feature = "entry_and_modify", since = "1.25.0")]
2083+
#[stable(feature = "entry_and_modify", since = "1.26.0")]
20842084
pub fn and_modify<F>(self, mut f: F) -> Self
20852085
where F: FnMut(&mut V)
20862086
{

0 commit comments

Comments
 (0)