Skip to content

Commit ce24421

Browse files
committed
Remove liNone as it is in the prelude
1 parent e9e319c commit ce24421

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

library/core/src/time.rs

-8
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,6 @@ impl Duration {
419419
/// Checked `Duration` addition. Computes `self + other`, returning [`None`]
420420
/// if overflow occurred.
421421
///
422-
/// [`None`]: crate::option::Option::None
423-
///
424422
/// # Examples
425423
///
426424
/// Basic usage:
@@ -455,8 +453,6 @@ impl Duration {
455453
/// Checked `Duration` subtraction. Computes `self - other`, returning [`None`]
456454
/// if the result would be negative or if overflow occurred.
457455
///
458-
/// [`None`]: crate::option::Option::None
459-
///
460456
/// # Examples
461457
///
462458
/// Basic usage:
@@ -492,8 +488,6 @@ impl Duration {
492488
/// Checked `Duration` multiplication. Computes `self * other`, returning
493489
/// [`None`] if overflow occurred.
494490
///
495-
/// [`None`]: crate::option::Option::None
496-
///
497491
/// # Examples
498492
///
499493
/// Basic usage:
@@ -524,8 +518,6 @@ impl Duration {
524518
/// Checked `Duration` division. Computes `self / other`, returning [`None`]
525519
/// if `other == 0`.
526520
///
527-
/// [`None`]: crate::option::Option::None
528-
///
529521
/// # Examples
530522
///
531523
/// Basic usage:

0 commit comments

Comments
 (0)