We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8058136 + 418535b commit 66de611Copy full SHA for 66de611
library/alloc/src/string.rs
@@ -72,9 +72,9 @@ use crate::vec::Vec;
72
73
/// A UTF-8–encoded, growable string.
74
///
75
-/// The `String` type is the most common string type that has ownership over the
76
-/// contents of the string. It has a close relationship with its borrowed
77
-/// counterpart, the primitive [`str`].
+/// `String` is the most common string type. It has ownership over the contents
+/// of the string, stored in a heap-allocated buffer (see [Representation](#representation)).
+/// It is closely related to its borrowed counterpart, the primitive [`str`].
78
79
/// # Examples
80
0 commit comments