]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/ffi/os_str.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libstd / ffi / os_str.rs
index 9c40a31986cea69554febabb678d768cf9211fb4..828972187eefcc533e533a467324345cf0592f63 100644 (file)
@@ -36,7 +36,7 @@
 /// and platform-native string values, and in particular allowing a Rust string
 /// to be converted into an "OS" string with no cost if possible.  A consequence
 /// of this is that `OsString` instances are *not* `NUL` terminated; in order
-/// to pass to e.g. Unix system call, you should create a [`CStr`].
+/// to pass to e.g., Unix system call, you should create a [`CStr`].
 ///
 /// `OsString` is to [`&OsStr`] as [`String`] is to [`&str`]: the former
 /// in each pair are owned strings; the latter are borrowed