From 76e82d6f52431b4877bbdc6413480680d9956967 Mon Sep 17 00:00:00 2001 From: Chris Gregory Date: Tue, 2 Apr 2019 22:26:11 -0400 Subject: [PATCH] Link to sync_all --- src/libstd/fs.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index 99dd0d8eeeb..034564250c3 100644 --- a/src/libstd/fs.rs +++ b/src/libstd/fs.rs @@ -23,7 +23,7 @@ /// /// Files are automatically closed when they go out of scope. Errors detected /// on closing are ignored by the implementation of `Drop`. Use the method -/// `sync_all` if these errors must be manually handled. +/// [`sync_all`] if these errors must be manually handled. /// /// # Examples /// @@ -86,6 +86,7 @@ /// [`Read`]: ../io/trait.Read.html /// [`Write`]: ../io/trait.Write.html /// [`BufReader`]: ../io/struct.BufReader.html +/// [`sync_all`]: struct.File.html#method.sync_all #[stable(feature = "rust1", since = "1.0.0")] pub struct File { inner: fs_imp::File, -- 2.44.0