Skip to content

Commit f1a4f30

Browse files
authored
Rollup merge of #126384 - RalfJung:is_none_or, r=workingjubilee
add tracking issue for is_none_or This was forgotten in #126328. Cc #126383
2 parents 393b526 + 898b541 commit f1a4f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ impl<T> Option<T> {
672672
/// ```
673673
#[must_use]
674674
#[inline]
675-
#[unstable(feature = "is_none_or", issue = "none")]
675+
#[unstable(feature = "is_none_or", issue = "126383")]
676676
pub fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool {
677677
match self {
678678
None => true,

0 commit comments

Comments
 (0)