about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniyar Nurmukhamet <nurmukhametdaniyar@gmail.com>2023-07-02 10:07:52 +0600
committerDaniyar Nurmukhamet <nurmukhametdaniyar@gmail.com>2023-07-02 10:07:52 +0600
commit99599db8f01dac55f7e29e447480aa9ad566c122 (patch)
tree470f1cf981a39da7b42063b878e8602f8397f1fe
parentba76096bf10b66d222868ca26437ba38c24c7783 (diff)
downloadrust-99599db8f01dac55f7e29e447480aa9ad566c122.tar.gz
rust-99599db8f01dac55f7e29e447480aa9ad566c122.zip
fixed documentation of from<CString> for Rc<CStr>: Arc -> Rc
-rw-r--r--library/alloc/src/ffi/c_str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/ffi/c_str.rs b/library/alloc/src/ffi/c_str.rs
index f99395c72aa..62856fc9a49 100644
--- a/library/alloc/src/ffi/c_str.rs
+++ b/library/alloc/src/ffi/c_str.rs
@@ -888,7 +888,7 @@ impl From<&CStr> for Arc<CStr> {
 #[stable(feature = "shared_from_slice2", since = "1.24.0")]
 impl From<CString> for Rc<CStr> {
     /// Converts a [`CString`] into an <code>[Rc]<[CStr]></code> by moving the [`CString`]
-    /// data into a new [`Arc`] buffer.
+    /// data into a new [`Rc`] buffer.
     #[inline]
     fn from(s: CString) -> Rc<CStr> {
         let rc: Rc<[u8]> = Rc::from(s.into_inner());