about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authoraticu <15schnic@gmail.com>2020-07-25 14:04:56 +0200
committeraticu <15schnic@gmail.com>2020-07-25 14:04:56 +0200
commite7949bc2f41e710deb97f9e1da2a599563b1faf4 (patch)
tree5fd70d8994e0b1d340c63c0db2f34b52bb25b6e1 /src/liballoc
parent0e11fc8053d32c44e7152865852acc5c3c54efb3 (diff)
downloadrust-e7949bc2f41e710deb97f9e1da2a599563b1faf4.tar.gz
rust-e7949bc2f41e710deb97f9e1da2a599563b1faf4.zip
Fix wrong name in `String::from_raw_parts` docs
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/string.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs
index f41c8c5a559..798ab84069a 100644
--- a/src/liballoc/string.rs
+++ b/src/liballoc/string.rs
@@ -667,7 +667,7 @@ impl String {
     /// This is highly unsafe, due to the number of invariants that aren't
     /// checked:
     ///
-    /// * The memory at `ptr` needs to have been previously allocated by the
+    /// * The memory at `buf` needs to have been previously allocated by the
     ///   same allocator the standard library uses, with a required alignment of exactly 1.
     /// * `length` needs to be less than or equal to `capacity`.
     /// * `capacity` needs to be the correct value.
@@ -675,7 +675,7 @@ impl String {
     /// Violating these may cause problems like corrupting the allocator's
     /// internal data structures.
     ///
-    /// The ownership of `ptr` is effectively transferred to the
+    /// The ownership of `buf` is effectively transferred to the
     /// `String` which may then deallocate, reallocate or change the
     /// contents of memory pointed to by the pointer at will. Ensure
     /// that nothing else uses the pointer after calling this