about summary refs log tree commit diff
path: root/library/alloc/src/string.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-03-26 11:50:27 +0000
committerbors <bors@rust-lang.org>2024-03-26 11:50:27 +0000
commit2e198d04ee1ccd20926701c4da7403d2c6bca7b3 (patch)
tree516054cbab817a3ae4ba709db47420054c52aee0 /library/alloc/src/string.rs
parent78d556e28d4e4d60b45bd183c22748967731abb9 (diff)
parent89a36c03850a404d8d3a4b869cb85293e1f9a978 (diff)
downloadrust-2e198d04ee1ccd20926701c4da7403d2c6bca7b3.tar.gz
rust-2e198d04ee1ccd20926701c4da7403d2c6bca7b3.zip
Auto merge of #3419 - RalfJung:rustup, r=RalfJung
Rustup

https://github.com/rust-lang/rust/pull/123081 landed so hopefully this works now.
Diffstat (limited to 'library/alloc/src/string.rs')
-rw-r--r--library/alloc/src/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/string.rs b/library/alloc/src/string.rs
index c4dcff1b1c4..7dba5b4e1f9 100644
--- a/library/alloc/src/string.rs
+++ b/library/alloc/src/string.rs
@@ -260,7 +260,7 @@ use crate::vec::Vec;
 /// # Representation
 ///
 /// A `String` is made up of three components: a pointer to some bytes, a
-/// length, and a capacity. The pointer points to an internal buffer `String`
+/// length, and a capacity. The pointer points to the internal buffer which `String`
 /// uses to store its data. The length is the number of bytes currently stored
 /// in the buffer, and the capacity is the size of the buffer in bytes. As such,
 /// the length will always be less than or equal to the capacity.