Fix a small typo in libstd/fs.rs

This commit is contained in:
Markus Siemens 2015-02-17 11:22:27 +01:00
parent f1bb6c2f46
commit bad3bcbfc0

View File

@ -114,7 +114,7 @@ impl File {
/// Open a file in write-only mode.
///
/// This function will create a file it it does not exist,
/// This function will create a file if it does not exist,
/// and will truncate it if it does.
///
/// See the `OpenOptions::open` function for more details.