about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2017-05-09 10:55:47 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2017-05-09 10:55:47 -0700
commitdefcfb21f1a235153ecc03444f0e7b779de0858f (patch)
treec658885fb189c6b7994c63db0a108683edc25512 /src/libstd
parentf3fc547194d22dc673274ac20e9a7b1e607cb862 (diff)
downloadrust-defcfb21f1a235153ecc03444f0e7b779de0858f.tar.gz
rust-defcfb21f1a235153ecc03444f0e7b779de0858f.zip
Remove wrong or outdated info from CString docs.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/ffi/c_str.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/libstd/ffi/c_str.rs b/src/libstd/ffi/c_str.rs
index 29f977ecd8c..44b62593fa3 100644
--- a/src/libstd/ffi/c_str.rs
+++ b/src/libstd/ffi/c_str.rs
@@ -30,12 +30,10 @@ use str::{self, Utf8Error};
 /// type is a static guarantee that the underlying bytes contain no interior 0
 /// bytes and the final byte is 0.
 ///
-/// A `CString` is created from either a byte slice or a byte vector. After
-/// being created, a `CString` predominately inherits all of its methods from
-/// the `Deref` implementation to `[c_char]`. Note that the underlying array
-/// is represented as an array of `c_char` as opposed to `u8`. A `u8` slice
-/// can be obtained with the `as_bytes` method.  Slices produced from a `CString`
-/// do *not* contain the trailing nul terminator unless otherwise specified.
+/// A `CString` is created from either a byte slice or a byte vector.  A `u8`
+/// slice can be obtained with the `as_bytes` method.  Slices produced from a
+/// `CString` do *not* contain the trailing nul terminator unless otherwise
+/// specified.
 ///
 /// # Examples
 ///