From 854ee25ad4f6679c26bf3990bc6bb2d8bfdb5124 Mon Sep 17 00:00:00 2001 From: Johnnie Birch <45402135+jlb6740@users.noreply.github.com> Date: Tue, 29 Oct 2019 18:06:34 -0700 Subject: [PATCH] Add back trailing whitespace removed on previous force push --- CHANGELOG.md | 2 +- src/unistd.rs | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 501bf0dcd4..a9bec9c7c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,7 +37,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). // old code `readlink(&path, &mut buf)` can be replaced with the following let _: OsString = readlink(&path); - + // old code `readlinkat(dirfd, &path, &mut buf)` can be replaced with the following let _: OsString = readlinkat(dirfd, &path); ``` diff --git a/src/unistd.rs b/src/unistd.rs index 9e7cf859bc..efeeebcd05 100644 --- a/src/unistd.rs +++ b/src/unistd.rs @@ -507,13 +507,13 @@ pub fn mkfifo(path: &P, mode: Mode) -> Result<()> { } /// Creates new fifo special file (named pipe) with path `path` and access rights `mode`. -/// +/// /// If `dirfd` has a value, then `path` is relative to directory associated with the file descriptor. -/// -/// If `dirfd` is `None`, then `path` is relative to the current working directory. -/// +/// +/// If `dirfd` is `None`, then `path` is relative to the current working directory. +/// /// # References -/// +/// /// [mkfifoat(2)](http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkfifoat.html). // mkfifoat is not implemented in OSX or android #[inline]