aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_parser
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-01-15 21:29:55 +0000
committerVeetaha <[email protected]>2020-01-15 21:29:55 +0000
commita24dcd7babc7212a23eb5c8d7c73bede0d6465aa (patch)
treeb628480739a9bbbe69a59fddaebaeffd969b318a /crates/ra_parser
parent60251da204e9b814a2947895851dfc78539e92f3 (diff)
fix(ra_parser.typo): amend 'format language' to 'formal language'
Diffstat (limited to 'crates/ra_parser')
-rw-r--r--crates/ra_parser/src/grammar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_parser/src/grammar.rs b/crates/ra_parser/src/grammar.rs
index 22f64a9f4..a46e11e1d 100644
--- a/crates/ra_parser/src/grammar.rs
+++ b/crates/ra_parser/src/grammar.rs
@@ -1,7 +1,7 @@
1//! This is the actual "grammar" of the Rust language. 1//! This is the actual "grammar" of the Rust language.
2//! 2//!
3//! Each function in this module and its children corresponds 3//! Each function in this module and its children corresponds
4//! to a production of the format grammar. Submodules roughly 4//! to a production of the formal grammar. Submodules roughly
5//! correspond to different *areas* of the grammar. By convention, 5//! correspond to different *areas* of the grammar. By convention,
6//! each submodule starts with `use super::*` import and exports 6//! each submodule starts with `use super::*` import and exports
7//! "public" productions via `pub(super)`. 7//! "public" productions via `pub(super)`.