about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoshua Horwitz <joshua.d.horwitz@gmail.com>2017-03-03 01:24:19 -0500
committerJoshua Horwitz <joshua.d.horwitz@gmail.com>2017-03-05 19:56:51 -0500
commit86bad49ec1f787a4f69a77ccffa06e4967d0c796 (patch)
treeef73d832a97fa24ec16f7595f33ba532ed656d9d
parent6b76c9ea19f4538a6ace44ebce2b8bfd1f80c126 (diff)
downloadrust-86bad49ec1f787a4f69a77ccffa06e4967d0c796.tar.gz
rust-86bad49ec1f787a4f69a77ccffa06e4967d0c796.zip
Issue #39688 - Help people find String::as_bytes() for UTF-8 r? @steveklabnik
-rw-r--r--src/libcollections/string.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs
index 4979107ccad..43323676ab4 100644
--- a/src/libcollections/string.rs
+++ b/src/libcollections/string.rs
@@ -433,6 +433,10 @@ impl String {
     ///
     /// [`str::from_utf8()`]: ../../std/str/fn.from_utf8.html
     ///
+    /// The inverse of this method is [`as_bytes`].
+    ///
+    /// [`as_bytes`]: #method.as_bytes
+    ///
     /// # Errors
     ///
     /// Returns `Err` if the slice is not UTF-8 with a description as to why the
@@ -979,6 +983,10 @@ impl String {
 
     /// Returns a byte slice of this `String`'s contents.
     ///
+    /// The inverse of this method is [`from_utf8`].
+    ///
+    /// [`from_utf8`]: #method.from_utf8
+    ///
     /// # Examples
     ///
     /// Basic usage: