From 12046fa9f70228380492d4ffeed9706060321a5c Mon Sep 17 00:00:00 2001 From: John Date: Sat, 27 Apr 2024 20:26:45 -0500 Subject: [PATCH] cl-structures/intern: Fix doc comment --- compiler/cl-structures/src/intern.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) }