We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ebe1b commit 76e82d6Copy full SHA for 76e82d6
src/libstd/fs.rs
@@ -23,7 +23,7 @@ use crate::time::SystemTime;
23
///
24
/// Files are automatically closed when they go out of scope. Errors detected
25
/// on closing are ignored by the implementation of `Drop`. Use the method
26
-/// `sync_all` if these errors must be manually handled.
+/// [`sync_all`] if these errors must be manually handled.
27
28
/// # Examples
29
@@ -86,6 +86,7 @@ use crate::time::SystemTime;
86
/// [`Read`]: ../io/trait.Read.html
87
/// [`Write`]: ../io/trait.Write.html
88
/// [`BufReader<R>`]: ../io/struct.BufReader.html
89
+/// [`sync_all`]: struct.File.html#method.sync_all
90
#[stable(feature = "rust1", since = "1.0.0")]
91
pub struct File {
92
inner: fs_imp::File,
0 commit comments