diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-08-12 15:49:48 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-12 15:49:48 +0100 |
commit | 6dba0e1c4de3b225556f7fce70518c8ebff170a6 (patch) | |
tree | 1bf923c652e0bdb325240e27bb07e3c552a1aa07 /crates/ra_mbe | |
parent | 147547e7b85e80e2e30aa1a5ba4d9d0969908398 (diff) | |
parent | 550d7fbe3cbf2af4a47fca6c9bbefaf798cd7b7b (diff) |
Merge #5725
5725: Rename ra_tt -> tt
r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_mbe')
-rw-r--r-- | crates/ra_mbe/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_mbe/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_mbe/Cargo.toml b/crates/ra_mbe/Cargo.toml index a26746a19..23315910c 100644 --- a/crates/ra_mbe/Cargo.toml +++ b/crates/ra_mbe/Cargo.toml | |||
@@ -11,7 +11,7 @@ doctest = false | |||
11 | [dependencies] | 11 | [dependencies] |
12 | ra_syntax = { path = "../ra_syntax" } | 12 | ra_syntax = { path = "../ra_syntax" } |
13 | ra_parser = { path = "../ra_parser" } | 13 | ra_parser = { path = "../ra_parser" } |
14 | tt = { path = "../ra_tt", package = "ra_tt" } | 14 | tt = { path = "../tt" } |
15 | rustc-hash = "1.1.0" | 15 | rustc-hash = "1.1.0" |
16 | smallvec = "1.2.0" | 16 | smallvec = "1.2.0" |
17 | log = "0.4.8" | 17 | log = "0.4.8" |
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 | ||