about summary refs log tree commit diff
diff options
context:
space:
mode:
authorErithax <erithax@proton.me>2024-12-27 23:13:09 +0100
committerGitHub <noreply@github.com>2024-12-27 23:13:09 +0100
commitb2531ba7a68db758d602f921d694a4e36bbde00f (patch)
tree91794b3774cbc067f6c0cf16ee036e61b61d60c1
parenteea4a9ab9ee7fd2546f4270a773533a6a0dbe524 (diff)
downloadrust-b2531ba7a68db758d602f921d694a4e36bbde00f.tar.gz
rust-b2531ba7a68db758d602f921d694a4e36bbde00f.zip
fix doc typo
-rw-r--r--src/tools/rust-analyzer/crates/parser/src/shortcuts.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/parser/src/shortcuts.rs b/src/tools/rust-analyzer/crates/parser/src/shortcuts.rs
index 7adedba7c43..32569d5c3fe 100644
--- a/src/tools/rust-analyzer/crates/parser/src/shortcuts.rs
+++ b/src/tools/rust-analyzer/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.