about summary refs log tree commit diff
path: root/src/libstd/ffi
diff options
context:
space:
mode:
authorCasey Rodarmor <casey@rodarmor.com>2017-06-25 14:23:43 -0700
committerCasey Rodarmor <casey@rodarmor.com>2017-06-25 14:23:43 -0700
commit0d985c9e8760da77b0df8920465700728e2da4f1 (patch)
treed0eaba8c83b02fc05a008e701a4563400e993b17 /src/libstd/ffi
parent229d0d3266002d343cdd2f4a3bf7f2fe9da15f38 (diff)
downloadrust-0d985c9e8760da77b0df8920465700728e2da4f1.tar.gz
rust-0d985c9e8760da77b0df8920465700728e2da4f1.zip
Reword OsStr docs to clarify that utf8 may contain nulls
Diffstat (limited to 'src/libstd/ffi')
-rw-r--r--src/libstd/ffi/os_str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ffi/os_str.rs b/src/libstd/ffi/os_str.rs
index f54d79c201f..e9296f33b9e 100644
--- a/src/libstd/ffi/os_str.rs
+++ b/src/libstd/ffi/os_str.rs
@@ -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