about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2021-12-18 17:34:55 +0300
committerGitHub <noreply@github.com>2021-12-18 17:34:55 +0300
commit92dad471bc3df761569a36642fcec8649e17f264 (patch)
tree66d9a9d9e0870f79de1a9fdac3847fc8a4c51838
parenta022ad68c9a57b327b84fcbba1de5742d70a0160 (diff)
downloadrust-92dad471bc3df761569a36642fcec8649e17f264.tar.gz
rust-92dad471bc3df761569a36642fcec8649e17f264.zip
Update crates/parser/src/lexed_str.rs
Co-authored-by: bjorn3 <bjorn3@users.noreply.github.com>
-rw-r--r--crates/parser/src/lexed_str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/lexed_str.rs b/crates/parser/src/lexed_str.rs
index 1ef29b5210f..b8936c34403 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!
 //!