about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPrabakaran Kumaresshan <4676330+nixphix@users.noreply.github.com>2020-08-15 21:53:02 +0530
committerPrabakaran Kumaresshan <4676330+nixphix@users.noreply.github.com>2020-08-15 21:53:02 +0530
commitf615b6d33831a0c114b02e13fe0e01a79cd4a750 (patch)
treea1d487d7f22022aa88aa8ea4737ea5453ac572a7
parentb54341a9d7fea71b1aabcebbcea70462904fd57d (diff)
downloadrust-f615b6d33831a0c114b02e13fe0e01a79cd4a750.tar.gz
rust-f615b6d33831a0c114b02e13fe0e01a79cd4a750.zip
remove empty lines
-rw-r--r--library/std/src/sys/vxworks/ext/fs.rs5
-rw-r--r--library/std/src/sys/vxworks/ext/process.rs2
2 files changed, 0 insertions, 7 deletions
diff --git a/library/std/src/sys/vxworks/ext/fs.rs b/library/std/src/sys/vxworks/ext/fs.rs
index 44b70dac497..340b8fd2fe1 100644
--- a/library/std/src/sys/vxworks/ext/fs.rs
+++ b/library/std/src/sys/vxworks/ext/fs.rs
@@ -223,7 +223,6 @@ impl FileExt for fs::File {
 }
 
 /// Unix-specific extensions to [`fs::Permissions`].
-///
 #[stable(feature = "fs_ext", since = "1.1.0")]
 pub trait PermissionsExt {
     /// Returns the underlying raw `st_mode` bits that contain the standard
@@ -299,7 +298,6 @@ impl PermissionsExt for Permissions {
 }
 
 /// Unix-specific extensions to [`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.
@@ -367,7 +365,6 @@ impl OpenOptionsExt for OpenOptions {
 */
 
 /// Unix-specific extensions to [`fs::Metadata`].
-///
 #[stable(feature = "metadata_ext", since = "1.1.0")]
 pub trait MetadataExt {
     /// Returns the ID of the device containing the file.
@@ -746,7 +743,6 @@ impl FileTypeExt for fs::FileType {
 }
 
 /// Unix-specific extension methods for [`fs::DirEntry`].
-///
 #[stable(feature = "dir_entry_ext", since = "1.1.0")]
 pub trait DirEntryExt {
     /// Returns the underlying `d_ino` field in the contained `dirent`
@@ -807,7 +803,6 @@ pub fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()>
 }
 
 /// Unix-specific extensions to [`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 578bcc80efc..3ffa5be1b3b 100644
--- a/library/std/src/sys/vxworks/ext/process.rs
+++ b/library/std/src/sys/vxworks/ext/process.rs
@@ -10,7 +10,6 @@ use crate::sys::vxworks::ext::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
 use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
 
 /// Unix-specific extensions to the [`process::Command`] builder.
-///
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait CommandExt {
     /// Sets the child process's user ID. This translates to a
@@ -149,7 +148,6 @@ impl CommandExt for process::Command {
 }
 
 /// Unix-specific extensions to [`process::ExitStatus`].
-///
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait ExitStatusExt {
     /// Creates a new `ExitStatus` from the raw underlying `i32` return value of