diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2018-02-24 21:06:29 -0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-02-25 14:24:24 +0800 |
| commit | 0aa753ba30254631ce05f37cd2ff0dd428d931c5 (patch) | |
| tree | dbc1177c336c926dad207f36465a9eb6115dc613 /src/liballoc | |
| parent | 4360dfa126ba5d26a520e8a0d2dd9680081dad0d (diff) | |
| download | rust-0aa753ba30254631ce05f37cd2ff0dd428d931c5.tar.gz rust-0aa753ba30254631ce05f37cd2ff0dd428d931c5.zip | |
1.25.0 -> 1.26.-
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/btree/map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/btree/map.rs b/src/liballoc/btree/map.rs index b98489c516a..618ef81fdd9 100644 --- a/src/liballoc/btree/map.rs +++ b/src/liballoc/btree/map.rs @@ -2128,7 +2128,7 @@ impl<'a, K: Ord, V> Entry<'a, K, V> { /// .or_insert(42); /// assert_eq!(map["poneyland"], 43); /// ``` - #[stable(feature = "entry_and_modify", since = "1.25.0")] + #[stable(feature = "entry_and_modify", since = "1.26.0")] pub fn and_modify<F>(self, mut f: F) -> Self where F: FnMut(&mut V) { |
