From cb312539fb2d1338227d5fb82ce2b25d5e00b91e Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 14 Jul 2021 13:58:50 +0800 Subject: [PATCH] Fix ImmutableString docs. --- src/immutable_string.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/immutable_string.rs b/src/immutable_string.rs index 1b4cd660..30a72a3d 100644 --- a/src/immutable_string.rs +++ b/src/immutable_string.rs @@ -16,8 +16,8 @@ use std::{ /// The system immutable string type. /// -/// An [`ImmutableString`] wraps an [`Rc`][std::rc::Rc]`<`[`String`]`>` -/// (or [`Arc`][std::sync::Arc]`<`[`String`]`>` under the `sync` feature) +/// An [`ImmutableString`] wraps an [`Rc`][std::rc::Rc]`<`[`SmartString`][smartstring::SmartString]`>` +/// (or [`Arc`][std::sync::Arc]`<`[`SmartString`][smartstring::SmartString]`>` under the `sync` feature) /// so that it can be simply shared and not cloned. /// /// # Example