Skip to content

Commit 9ab47d1

Browse files
authored
Rollup merge of #56809 - dbrgn:permissions-ext, r=alexcrichton
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 🙂
2 parents 7a92fbd + 275deac commit 9ab47d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/fs.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,10 @@ pub struct OpenOptions(fs_imp::OpenOptions);
195195
/// This module only currently provides one bit of information, [`readonly`],
196196
/// which is exposed on all currently supported platforms. Unix-specific
197197
/// functionality, such as mode bits, is available through the
198-
/// `os::unix::PermissionsExt` trait.
198+
/// [`PermissionsExt`] trait.
199199
///
200200
/// [`readonly`]: struct.Permissions.html#method.readonly
201+
/// [`PermissionsExt`]: ../os/unix/fs/trait.PermissionsExt.html
201202
#[derive(Clone, PartialEq, Eq, Debug)]
202203
#[stable(feature = "rust1", since = "1.0.0")]
203204
pub struct Permissions(fs_imp::FilePermissions);

0 commit comments

Comments
 (0)