aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-08-12 15:46:20 +0100
committerAleksey Kladov <[email protected]>2020-08-12 15:46:54 +0100
commit550d7fbe3cbf2af4a47fca6c9bbefaf798cd7b7b (patch)
tree1bf923c652e0bdb325240e27bb07e3c552a1aa07 /crates/ra_mbe/src
parent208b7bd7ba687fb570feb1b89219f14c63712ce8 (diff)
Rename ra_tt -> tt
Diffstat (limited to 'crates/ra_mbe/src')
-rw-r--r--crates/ra_mbe/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_mbe/src/lib.rs b/crates/ra_mbe/src/lib.rs
index dec7ba22e..f854ca09a 100644
--- a/crates/ra_mbe/src/lib.rs
+++ b/crates/ra_mbe/src/lib.rs
@@ -1,5 +1,5 @@
1//! `mbe` (short for Macro By Example) crate contains code for handling 1//! `mbe` (short for Macro By Example) crate contains code for handling
2//! `macro_rules` macros. It uses `TokenTree` (from `ra_tt` package) as the 2//! `macro_rules` macros. It uses `TokenTree` (from `tt` package) as the
3//! interface, although it contains some code to bridge `SyntaxNode`s and 3//! interface, although it contains some code to bridge `SyntaxNode`s and
4//! `TokenTree`s as well! 4//! `TokenTree`s as well!
5 5