diff options
| author | Jack Vickeridge <jackv@cantab.net> | 2017-01-19 23:59:29 +0000 |
|---|---|---|
| committer | Jack Vickeridge <jackv@cantab.net> | 2017-01-20 00:38:52 +0000 |
| commit | fe9f5d52a6830991609c07455b0267852d9c3545 (patch) | |
| tree | 9b2f56ad148137254934abe82ef550028ea59a97 /src/libstd | |
| parent | e8f2e2b52128b2cd420478616dd289beec20351e (diff) | |
| download | rust-fe9f5d52a6830991609c07455b0267852d9c3545.tar.gz rust-fe9f5d52a6830991609c07455b0267852d9c3545.zip | |
Add link to symlink_metadata in fs::Metadata doc
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/fs.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index 26fcd348fc9..0ffe0f1c856 100644 --- a/src/libstd/fs.rs +++ b/src/libstd/fs.rs @@ -89,11 +89,12 @@ pub struct File { /// Metadata information about a file. /// -/// This structure is returned from the [`metadata`] function or method and -/// represents known metadata about a file such as its permissions, size, -/// modification times, etc. +/// This structure is returned from the [`metadata`] or [`symlink_metadata`] +/// functions or methods and represents known metadata about a file such as +/// its permissions, size, modification times, etc. /// /// [`metadata`]: fn.metadata.html +/// [`symlink_metadata`]: fn.symlink_metadata.html #[stable(feature = "rust1", since = "1.0.0")] #[derive(Clone)] pub struct Metadata(fs_imp::FileAttr); |
