Skip to content

Commit

Permalink
Auto merge of #123270 - JaniM:janim/string-alloc-doc, r=workingjubilee
Browse files Browse the repository at this point in the history
doc: mention heap allocation earlier in String docs

Just a tiny addition.

Helps with #123263.
  • Loading branch information
bors committed Mar 31, 2024
2 parents 8058136 + 418535b commit 66de611
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/alloc/src/string.rs
Expand Up @@ -72,9 +72,9 @@ use crate::vec::Vec;

/// A UTF-8–encoded, growable string.
///
/// The `String` type is the most common string type that has ownership over the
/// contents of the string. It has a close relationship with its borrowed
/// 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`].
///
/// # Examples
///
Expand Down

0 comments on commit 66de611

Please sign in to comment.