about summary refs log tree commit diff
path: root/src/libstd/sys/windows
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/sys/windows')
-rw-r--r--src/libstd/sys/windows/ext/fs.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/sys/windows/ext/fs.rs b/src/libstd/sys/windows/ext/fs.rs
index d49c884cb9f..c4ec75d32e4 100644
--- a/src/libstd/sys/windows/ext/fs.rs
+++ b/src/libstd/sys/windows/ext/fs.rs
@@ -42,7 +42,6 @@ pub trait FileExt {
     ///
     /// ```
     /// use std::io;
-    /// use std::io::prelude::*;
     /// use std::fs::File;
     /// use std::os::windows::prelude::*;
     ///
@@ -77,7 +76,6 @@ pub trait FileExt {
     /// # Examples
     ///
     /// ```
-    /// use std::io::prelude::*;
     /// use std::fs::File;
     /// use std::os::windows::prelude::*;
     ///
@@ -86,7 +84,7 @@ pub trait FileExt {
     ///
     /// // Write a byte string starting 72 bytes from
     /// // the start of the file.
-    /// buffer.write(b"some bytes", offset)?;
+    /// buffer.seek_write(b"some bytes", 72)?;
     /// # Ok(())
     /// # }
     /// ```