diff --git a/compiler/cl-structures/src/intern.rs b/compiler/cl-structures/src/intern.rs index 4cd5dc3..8329a97 100644 --- a/compiler/cl-structures/src/intern.rs +++ b/compiler/cl-structures/src/intern.rs @@ -97,7 +97,7 @@ pub mod interned { } impl> From for Interned<'static, str> { - /// Types which implement [AsRef] will be stored in the global [StringInterner] + /// Types which implement [`AsRef`] will be stored in the global [StringInterner] fn from(value: T) -> Self { from_str(value.as_ref()) }