Skip to content

Commit

Permalink
Add back trailing whitespace removed on previous force push
Browse files Browse the repository at this point in the history
  • Loading branch information
jlb6740 committed Oct 30, 2019
1 parent ea75be9 commit 5f03caa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -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);
```
Expand Down
8 changes: 4 additions & 4 deletions src/unistd.rs
Expand Up @@ -507,13 +507,13 @@ pub fn mkfifo<P: ?Sized + NixPath>(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.
///
///
/// # References
///
///
/// [mkfifoat(2)](http://pubs.opengroup.org/onlinepubs/9699919799/functions/mkfifoat.html).
// mkfifoat is not implemented in OSX or android
#[inline]
Expand Down

0 comments on commit 5f03caa

Please sign in to comment.