aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_parser
diff options
context:
space:
mode:
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)`.