about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorPrabakaran Kumaresshan <4676330+nixphix@users.noreply.github.com>2020-08-15 20:53:41 +0530
committerPrabakaran Kumaresshan <4676330+nixphix@users.noreply.github.com>2020-08-15 20:53:41 +0530
commitb54341a9d7fea71b1aabcebbcea70462904fd57d (patch)
tree9bfd9f3cc0eb7f8c15be44d5e7416b8261fecbc9 /library/std
parent9463380b0ceeca6c99d7466f90f1bf9fe4732d8d (diff)
downloadrust-b54341a9d7fea71b1aabcebbcea70462904fd57d.tar.gz
rust-b54341a9d7fea71b1aabcebbcea70462904fd57d.zip
resolve comments
Diffstat (limited to 'library/std')
-rw-r--r--library/std/src/sys/vxworks/ext/fs.rs21
-rw-r--r--library/std/src/sys/vxworks/ext/process.rs3
2 files changed, 8 insertions, 16 deletions
diff --git a/library/std/src/sys/vxworks/ext/fs.rs b/library/std/src/sys/vxworks/ext/fs.rs
index 680862a0268..44b70dac497 100644
--- a/library/std/src/sys/vxworks/ext/fs.rs
+++ b/library/std/src/sys/vxworks/ext/fs.rs
@@ -9,7 +9,7 @@ use crate::sys_common::{AsInner, AsInnerMut, FromInner};
 
 /// Unix-specific extensions to [`File`].
 ///
-/// [`File`]: crate::fs::File
+/// [`File`]: fs::File
 #[stable(feature = "file_offset", since = "1.15.0")]
 pub trait FileExt {
     /// Reads a number of bytes starting from a given offset.
@@ -24,7 +24,7 @@ pub trait FileExt {
     /// Note that similar to [`File::read`], it is not an error to return with a
     /// short read.
     ///
-    /// [`File::read`]: crate::fs::File::read
+    /// [`File::read`]: fs::File::read
     ///
     /// # Examples
     ///
@@ -55,7 +55,7 @@ pub trait FileExt {
     ///
     /// Similar to [`Read::read_exact`] but uses [`read_at`] instead of `read`.
     ///
-    /// [`Read::read_exact`]: crate::io::Read::read_exact
+    /// [`Read::read_exact`]: io::Read::read_exact
     /// [`read_at`]: FileExt::read_at
     ///
     /// # Errors
@@ -75,8 +75,8 @@ pub trait FileExt {
     /// has read, but it will never read more than would be necessary to
     /// completely fill the buffer.
     ///
-    /// [`ErrorKind::Interrupted`]: crate::io::ErrorKind::Interrupted
-    /// [`ErrorKind::UnexpectedEof`]: crate::io::ErrorKind::UnexpectedEof
+    /// [`ErrorKind::Interrupted`]: io::ErrorKind::Interrupted
+    /// [`ErrorKind::UnexpectedEof`]: io::ErrorKind::UnexpectedEof
     ///
     /// # Examples
     ///
@@ -132,7 +132,7 @@ pub trait FileExt {
     /// Note that similar to [`File::write`], it is not an error to return a
     /// short write.
     ///
-    /// [`File::write`]: crate::fs::File::write
+    /// [`File::write`]: fs::File::write
     ///
     /// # Examples
     ///
@@ -171,7 +171,7 @@ pub trait FileExt {
     /// This function will return the first error of
     /// non-[`ErrorKind::Interrupted`] kind that [`write_at`] returns.
     ///
-    /// [`ErrorKind::Interrupted`]: crate::io::ErrorKind::Interrupted
+    /// [`ErrorKind::Interrupted`]: io::ErrorKind::Interrupted
     /// [`write_at`]: FileExt::write_at
     ///
     /// # Examples
@@ -224,7 +224,6 @@ impl FileExt for fs::File {
 
 /// Unix-specific extensions to [`fs::Permissions`].
 ///
-/// [`fs::Permissions`]: crate::fs::Permissions
 #[stable(feature = "fs_ext", since = "1.1.0")]
 pub trait PermissionsExt {
     /// Returns the underlying raw `st_mode` bits that contain the standard
@@ -301,7 +300,6 @@ impl PermissionsExt for Permissions {
 
 /// Unix-specific extensions to [`fs::OpenOptions`].
 ///
-/// [`fs::OpenOptions`]: crate::fs::OpenOptions
 #[stable(feature = "fs_ext", since = "1.1.0")]
 pub trait OpenOptionsExt {
     /// Sets the mode bits that a new file will be created with.
@@ -370,7 +368,6 @@ impl OpenOptionsExt for OpenOptions {
 
 /// Unix-specific extensions to [`fs::Metadata`].
 ///
-/// [`fs::Metadata`]: crate::fs::Metadata
 #[stable(feature = "metadata_ext", since = "1.1.0")]
 pub trait MetadataExt {
     /// Returns the ID of the device containing the file.
@@ -655,7 +652,7 @@ impl MetadataExt for fs::Metadata {
 /// Adds support for special Unix file types such as block/character devices,
 /// pipes, and sockets.
 ///
-/// [`FileType`]: crate::fs::FileType
+/// [`FileType`]: fs::FileType
 #[stable(feature = "file_type_ext", since = "1.5.0")]
 pub trait FileTypeExt {
     /// Returns whether this file type is a block device.
@@ -750,7 +747,6 @@ impl FileTypeExt for fs::FileType {
 
 /// Unix-specific extension methods for [`fs::DirEntry`].
 ///
-/// [`fs::DirEntry`]: crate::fs::DirEntry
 #[stable(feature = "dir_entry_ext", since = "1.1.0")]
 pub trait DirEntryExt {
     /// Returns the underlying `d_ino` field in the contained `dirent`
@@ -812,7 +808,6 @@ pub fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()>
 
 /// Unix-specific extensions to [`fs::DirBuilder`].
 ///
-/// [`fs::DirBuilder`]: crate::fs::DirBuilder
 #[stable(feature = "dir_builder", since = "1.6.0")]
 pub trait DirBuilderExt {
     /// Sets the mode to create new directories with. This option defaults to
diff --git a/library/std/src/sys/vxworks/ext/process.rs b/library/std/src/sys/vxworks/ext/process.rs
index 3b2266e9465..578bcc80efc 100644
--- a/library/std/src/sys/vxworks/ext/process.rs
+++ b/library/std/src/sys/vxworks/ext/process.rs
@@ -11,7 +11,6 @@ use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
 
 /// Unix-specific extensions to the [`process::Command`] builder.
 ///
-/// [`process::Command`]: crate::process::Command
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait CommandExt {
     /// Sets the child process's user ID. This translates to a
@@ -94,7 +93,6 @@ pub trait CommandExt {
     /// a new child. Like spawn, however, the default behavior for the stdio
     /// descriptors will be to inherited from the current process.
     ///
-    /// [`process::exit`]: crate::process::exit
     ///
     /// # Notes
     ///
@@ -152,7 +150,6 @@ impl CommandExt for process::Command {
 
 /// Unix-specific extensions to [`process::ExitStatus`].
 ///
-/// [`process::ExitStatus`]: crate::process::ExitStatus
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait ExitStatusExt {
     /// Creates a new `ExitStatus` from the raw underlying `i32` return value of