Skip to content

Commit

Permalink
Rollup merge of #56809 - dbrgn:permissions-ext, r=alexcrichton
Browse files Browse the repository at this point in the history
Fix docs path to PermissionsExt

Couldn't test the link yet, since I didn't figure out how to build std rustdocs without building the entire compiler itself 🙂
  • Loading branch information
pietroalbini committed Dec 15, 2018
2 parents a352dd4 + 275deac commit ae3882c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libstd/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,10 @@ pub struct OpenOptions(fs_imp::OpenOptions);
/// This module only currently provides one bit of information, [`readonly`],
/// which is exposed on all currently supported platforms. Unix-specific
/// functionality, such as mode bits, is available through the
/// `os::unix::PermissionsExt` trait.
/// [`PermissionsExt`] trait.
///
/// [`readonly`]: struct.Permissions.html#method.readonly
/// [`PermissionsExt`]: ../os/unix/fs/trait.PermissionsExt.html
#[derive(Clone, PartialEq, Eq, Debug)]
#[stable(feature = "rust1", since = "1.0.0")]
pub struct Permissions(fs_imp::FilePermissions);
Expand Down

0 comments on commit ae3882c

Please sign in to comment.