From 2ce89eec824b4c355b7985c1e70614b368f94539 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 16 Oct 2023 22:42:32 -0500 Subject: [PATCH] lexer: unmatched delimiters? in my commits? Shame! Shame for a thousand years! --- libconlang/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/libconlang/src/lib.rs b/libconlang/src/lib.rs index 6411a90..5f528b8 100644 --- a/libconlang/src/lib.rs +++ b/libconlang/src/lib.rs @@ -1052,7 +1052,6 @@ pub mod lexer { .or_else(|| self.punctuation()) .or_else(|| self.invalid()) } - } /// Attempts to produce a [Type::String], [Type::Float], or [Type::Integer] pub fn literal(&mut self) -> Option { None.or_else(|| self.string())