about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDenis Vasilik <contact@denisvasilik.com>2020-08-09 23:12:30 +0200
committerDenis Vasilik <contact@denisvasilik.com>2020-08-09 23:12:30 +0200
commitce244210b16871e716539b1eb4de0f8390e4b732 (patch)
tree174f364f9f3f993159c6ae67c146e5283222d4e9
parente9e319c460468123200b90ab46871cf8288edfec (diff)
downloadrust-ce244210b16871e716539b1eb4de0f8390e4b732.tar.gz
rust-ce244210b16871e716539b1eb4de0f8390e4b732.zip
Remove liNone as it is in the prelude
-rw-r--r--library/core/src/time.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/library/core/src/time.rs b/library/core/src/time.rs
index 4d15a8d51af..cdbad0332ce 100644
--- a/library/core/src/time.rs
+++ b/library/core/src/time.rs
@@ -419,8 +419,6 @@ impl Duration {
     /// Checked `Duration` addition. Computes `self + other`, returning [`None`]
     /// if overflow occurred.
     ///
-    /// [`None`]: crate::option::Option::None
-    ///
     /// # Examples
     ///
     /// Basic usage:
@@ -455,8 +453,6 @@ impl Duration {
     /// Checked `Duration` subtraction. Computes `self - other`, returning [`None`]
     /// if the result would be negative or if overflow occurred.
     ///
-    /// [`None`]: crate::option::Option::None
-    ///
     /// # Examples
     ///
     /// Basic usage:
@@ -492,8 +488,6 @@ impl Duration {
     /// Checked `Duration` multiplication. Computes `self * other`, returning
     /// [`None`] if overflow occurred.
     ///
-    /// [`None`]: crate::option::Option::None
-    ///
     /// # Examples
     ///
     /// Basic usage:
@@ -524,8 +518,6 @@ impl Duration {
     /// Checked `Duration` division. Computes `self / other`, returning [`None`]
     /// if `other == 0`.
     ///
-    /// [`None`]: crate::option::Option::None
-    ///
     /// # Examples
     ///
     /// Basic usage: