diff options
Diffstat (limited to 'crates/ra_mbe/src/mbe_expander.rs')
-rw-r--r-- | crates/ra_mbe/src/mbe_expander.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_mbe/src/mbe_expander.rs b/crates/ra_mbe/src/mbe_expander.rs index f6177f078..1acba86ea 100644 --- a/crates/ra_mbe/src/mbe_expander.rs +++ b/crates/ra_mbe/src/mbe_expander.rs | |||
@@ -58,7 +58,7 @@ fn expand_rule(rule: &crate::Rule, input: &tt::Subtree) -> Option<tt::Subtree> { | |||
58 | /// | 58 | /// |
59 | /// The other side of the puzzle is `expand_subtree`, where we use the bindings | 59 | /// The other side of the puzzle is `expand_subtree`, where we use the bindings |
60 | /// to substitute meta variables in the output template. When expanding, we | 60 | /// to substitute meta variables in the output template. When expanding, we |
61 | /// maintain a `nesteing` stack of indicies whihc tells us which occurence from | 61 | /// maintain a `nesting` stack of indices which tells us which occurrence from |
62 | /// the `Bindings` we should take. We push to the stack when we enter a | 62 | /// the `Bindings` we should take. We push to the stack when we enter a |
63 | /// repetition. | 63 | /// repetition. |
64 | /// | 64 | /// |