about summary refs log tree commit diff
path: root/src/libstd/fs.rs
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2016-06-01 10:16:45 -0400
committerJack O'Connor <oconnor663@gmail.com>2016-06-01 10:16:45 -0400
commitdf8d5baab7b7e9970545419c0e6bf781ea86b12c (patch)
tree947662fb22caa9350a7bcc4bf4a1f954b86eeac3 /src/libstd/fs.rs
parent8be9625e2e65df6c7174272f78893394fca209e1 (diff)
downloadrust-df8d5baab7b7e9970545419c0e6bf781ea86b12c.tar.gz
rust-df8d5baab7b7e9970545419c0e6bf781ea86b12c.zip
allow for the future addition of a close method on File
Diffstat (limited to 'src/libstd/fs.rs')
-rw-r--r--src/libstd/fs.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index fcc84e54842..60c2a516d6a 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -32,8 +32,7 @@ use time::SystemTime;
 /// it was opened with. Files also implement `Seek` to alter the logical cursor
 /// that the file contains internally.
 ///
-/// Files are automatically closed when they go out of scope, so there is no
-/// explicit `close` method.
+/// Files are automatically closed when they go out of scope.
 ///
 /// # Examples
 ///