about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVeetaha <gerzoh1@gmail.com>2020-01-15 23:29:55 +0200
committerVeetaha <gerzoh1@gmail.com>2020-01-15 23:29:55 +0200
commita24dcd7babc7212a23eb5c8d7c73bede0d6465aa (patch)
treeb628480739a9bbbe69a59fddaebaeffd969b318a
parent60251da204e9b814a2947895851dfc78539e92f3 (diff)
downloadrust-a24dcd7babc7212a23eb5c8d7c73bede0d6465aa.tar.gz
rust-a24dcd7babc7212a23eb5c8d7c73bede0d6465aa.zip
fix(ra_parser.typo): amend 'format language' to 'formal language'
-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 22f64a9f4ad..a46e11e1d94 100644
--- a/crates/ra_parser/src/grammar.rs
+++ b/crates/ra_parser/src/grammar.rs
@@ -1,7 +1,7 @@
 //! This is the actual "grammar" of the Rust language.
 //!
 //! Each function in this module and its children corresponds
-//! to a production of the format grammar. Submodules roughly
+//! to a production of the formal grammar. Submodules roughly
 //! correspond to different *areas* of the grammar. By convention,
 //! each submodule starts with `use super::*` import and exports
 //! "public" productions via `pub(super)`.