Reword OsStr docs to clarify that utf8 may contain nulls

This commit is contained in:
Casey Rodarmor 2017-06-25 14:23:43 -07:00
parent 229d0d3266
commit 0d985c9e87

View File

@ -29,7 +29,7 @@ use sys_common::{AsInner, IntoInner, FromInner};
/// * On Windows, strings are often arbitrary sequences of non-zero 16-bit
/// values, interpreted as UTF-16 when it is valid to do so.
///
/// * In Rust, strings are always valid UTF-8, but may contain zeros.
/// * In Rust, strings are always valid UTF-8, which may contain zeros.
///
/// `OsString` and [`OsStr`] bridge this gap by simultaneously representing Rust
/// and platform-native string values, and in particular allowing a Rust string