From c7f5021de140d777d18faee543b54425a527a07f Mon Sep 17 00:00:00 2001 From: Erithax Date: Fri, 27 Dec 2024 23:13:09 +0100 Subject: [PATCH] fix doc typo --- crates/parser/src/shortcuts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/parser/src/shortcuts.rs b/crates/parser/src/shortcuts.rs index 7adedba7c438..32569d5c3fe9 100644 --- a/crates/parser/src/shortcuts.rs +++ b/crates/parser/src/shortcuts.rs @@ -5,7 +5,7 @@ //! abstract token parsing, and string tokenization as completely separate //! layers. //! -//! However, often you do pares text into syntax trees and the glue code for +//! However, often you do parse text into syntax trees and the glue code for //! that needs to live somewhere. Rather than putting it to lexer or parser, we //! use a separate shortcuts module for that.