diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-15 18:32:20 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-15 18:42:46 +0530 |
| commit | c6ced0fb361f26622349345a185fbd583b414fa6 (patch) | |
| tree | ef779700b3cf8e7ff0a49563655b22ac43f12446 /src/libstd | |
| parent | a0019989fe7769c6eae1a4d1cfadf6dd0dab01cd (diff) | |
| parent | af7b8910b814f5f8ed58d0f692360c9bb7ee4ab9 (diff) | |
| download | rust-c6ced0fb361f26622349345a185fbd583b414fa6.tar.gz rust-c6ced0fb361f26622349345a185fbd583b414fa6.zip | |
Rollup merge of #22328 - shepmaster:os_str_typo, r=steveklabnik
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/ffi/os_str.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ffi/os_str.rs b/src/libstd/ffi/os_str.rs index 4d7292b6eb4..1d14b141778 100644 --- a/src/libstd/ffi/os_str.rs +++ b/src/libstd/ffi/os_str.rs @@ -189,7 +189,7 @@ impl OsStr { self.inner.to_string_lossy() } - /// Copy the slice into an onwed `OsString`. + /// Copy the slice into an owned `OsString`. pub fn to_os_string(&self) -> OsString { OsString { inner: self.inner.to_owned() } } |
