cl-structures/intern: Fix doc comment

This commit is contained in:
John 2024-04-27 20:26:45 -05:00
parent fb7de717d0
commit 12046fa9f7

View File

@ -97,7 +97,7 @@ pub mod interned {
}
impl<T: AsRef<str>> From<T> for Interned<'static, str> {
/// Types which implement [AsRef<str>] will be stored in the global [StringInterner]
/// Types which implement [`AsRef<str>`] will be stored in the global [StringInterner]
fn from(value: T) -> Self {
from_str(value.as_ref())
}