about summary refs log tree commit diff
path: root/library/std/src/sys/unix/ext/net.rs
diff options
context:
space:
mode:
authorPrabakaran Kumaresshan <4676330+nixphix@users.noreply.github.com>2020-08-19 06:19:35 +0530
committerPrabakaran Kumaresshan <4676330+nixphix@users.noreply.github.com>2020-08-19 06:19:35 +0530
commit63d2e9b05f98ff49d593cc392cb31c8d82552726 (patch)
treeffc73522e664cdc8e5818c0957f8f677377db806 /library/std/src/sys/unix/ext/net.rs
parent3e3a2c82f3ab29f855911f2ecf57ef15a3a4fe03 (diff)
downloadrust-63d2e9b05f98ff49d593cc392cb31c8d82552726.tar.gz
rust-63d2e9b05f98ff49d593cc392cb31c8d82552726.zip
resolve comments
Diffstat (limited to 'library/std/src/sys/unix/ext/net.rs')
-rw-r--r--library/std/src/sys/unix/ext/net.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/library/std/src/sys/unix/ext/net.rs b/library/std/src/sys/unix/ext/net.rs
index f43869a1b2c..55803ddfc43 100644
--- a/library/std/src/sys/unix/ext/net.rs
+++ b/library/std/src/sys/unix/ext/net.rs
@@ -408,8 +408,6 @@ impl UnixStream {
     /// indefinitely. An [`Err`] is returned if the zero [`Duration`] is passed to this
     /// method.
     ///
-    /// [`None`]: crate::option::Option::None
-    /// [`Err`]: crate::result::Result::Err
     /// [`read`]: io::Read::read
     ///
     /// # Examples
@@ -452,8 +450,6 @@ impl UnixStream {
     /// indefinitely. An [`Err`] is returned if the zero [`Duration`] is
     /// passed to this method.
     ///
-    /// [`None`]: crate::option::Option::None
-    /// [`Err`]: crate::result::Result::Err
     /// [`read`]: io::Read::read
     ///
     /// # Examples
@@ -967,8 +963,6 @@ impl UnixListener {
     /// The iterator will never return [`None`] and will also not yield the
     /// peer's [`SocketAddr`] structure.
     ///
-    /// [`None`]: crate::option::Option::None
-    ///
     /// # Examples
     ///
     /// ```no_run
@@ -1036,8 +1030,6 @@ impl<'a> IntoIterator for &'a UnixListener {
 ///
 /// It will never return [`None`].
 ///
-/// [`None`]: crate::option::Option::None
-///
 /// # Examples
 ///
 /// ```no_run
@@ -1424,8 +1416,6 @@ impl UnixDatagram {
     /// block indefinitely. An [`Err`] is returned if the zero [`Duration`]
     /// is passed to this method.
     ///
-    /// [`None`]: crate::option::Option::None
-    /// [`Err`]: crate::result::Result::Err
     /// [`recv`]: UnixDatagram::recv
     /// [`recv_from`]: UnixDatagram::recv_from
     ///
@@ -1470,7 +1460,6 @@ impl UnixDatagram {
     /// block indefinitely. An [`Err`] is returned if the zero [`Duration`] is passed to this
     /// method.
     ///
-    /// [`None`]: crate::option::Option::None
     /// [`send`]: UnixDatagram::send
     /// [`send_to`]: UnixDatagram::send_to
     ///