1
Fork 0

allow for the future addition of a close method on File

This commit is contained in:
Jack O'Connor 2016-06-01 10:16:45 -04:00
parent 8be9625e2e
commit df8d5baab7

View file

@ -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
///