From 92dad471bc3df761569a36642fcec8649e17f264 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 18 Dec 2021 17:34:55 +0300 Subject: [PATCH] Update crates/parser/src/lexed_str.rs Co-authored-by: bjorn3 --- crates/parser/src/lexed_str.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/parser/src/lexed_str.rs b/crates/parser/src/lexed_str.rs index 1ef29b5210..b8936c3440 100644 --- a/crates/parser/src/lexed_str.rs +++ b/crates/parser/src/lexed_str.rs @@ -1,7 +1,7 @@ //! Lexing `&str` into a sequence of Rust tokens. //! //! Note that strictly speaking the parser in this crate is not required to work -//! on tokens which originated from text. Macros, eg, can synthesize tokes out +//! on tokens which originated from text. Macros, eg, can synthesize tokens out //! of thin air. So, ideally, lexer should be an orthogonal crate. It is however //! convenient to include a text-based lexer here! //!