Skip to content

Commit 278070b

Browse files
committed
add tracking issue
1 parent bfbc296 commit 278070b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/option.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@ impl<T> Option<T> {
12431243
///
12441244
/// [default value]: Default::default
12451245
#[inline]
1246-
#[unstable(feature = "result_option_map_or_default", issue = "none")]
1246+
#[unstable(feature = "result_option_map_or_default", issue = "138099")]
12471247
pub fn map_or_default<U, F>(self, f: F) -> U
12481248
where
12491249
U: Default,

library/core/src/result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ impl<T, E> Result<T, E> {
847847
///
848848
/// [default value]: Default::default
849849
#[inline]
850-
#[unstable(feature = "result_option_map_or_default", issue = "none")]
850+
#[unstable(feature = "result_option_map_or_default", issue = "138099")]
851851
pub fn map_or_default<U, F>(self, f: F) -> U
852852
where
853853
U: Default,

0 commit comments

Comments
 (0)