Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #18770 from Erithax/patch-1
fix doc typo
Laurențiu Nicola 2024-12-28
parent a77cf8e · parent c7f5021 · commit d3bb15e
-rw-r--r--crates/parser/src/shortcuts.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/shortcuts.rs b/crates/parser/src/shortcuts.rs
index 7adedba7c4..32569d5c3f 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.