From a07312bf923719d188ef1b348f4afe9a98292531 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 1 Mar 2024 03:17:43 -0600 Subject: [PATCH] cl-lexer: fix link in doc comment --- cl-lexer/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl-lexer/src/lib.rs b/cl-lexer/src/lib.rs index e952a24..a15aacb 100644 --- a/cl-lexer/src/lib.rs +++ b/cl-lexer/src/lib.rs @@ -475,7 +475,7 @@ pub mod error { pub enum Reason { /// Found an opening delimiter of type [char], but not the expected closing delimiter UnmatchedDelimiters(char), - /// Found a character that doesn't belong to any [Type](crate::token::token_type::Type) + /// Found a character that doesn't belong to any [Type](cl_token::token_type::Type) UnexpectedChar(char), /// Found a character that's not valid in identifiers while looking for an identifier NotIdentifier(char),