about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorDanilo Bargen <mail@dbrgn.ch>2018-12-14 10:53:19 +0100
committerDanilo Bargen <mail@dbrgn.ch>2018-12-14 10:53:19 +0100
commit275deacc4c4befb1d73ae04db88d80edd724a4ed (patch)
treea5fd1a29ee9bf250dd43659326c9af51740f3884 /src/libstd
parent664ede88faf57b8fc09715fc66cd9e46490ce64d (diff)
downloadrust-275deacc4c4befb1d73ae04db88d80edd724a4ed.tar.gz
rust-275deacc4c4befb1d73ae04db88d80edd724a4ed.zip
Fix docs path to PermissionsExt
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fs.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index d581ba1de23..edcfdd9e534 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -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);