diff options
author | Edwin Cheng <[email protected]> | 2020-03-26 21:12:17 +0000 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-03-31 15:20:18 +0100 |
commit | 3b9722092622c8652d2028f3cf67e7ce2f7c935a (patch) | |
tree | 3568c0a0a9c3cfc5d5111d2791beece32121c0d4 | |
parent | fa621f80fabe2c9d36fb2af57785e184fb331939 (diff) |
Add back doc string for process
-rw-r--r-- | crates/ra_proc_macro/src/process.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_proc_macro/src/process.rs b/crates/ra_proc_macro/src/process.rs index a9095af11..6a3fe2e20 100644 --- a/crates/ra_proc_macro/src/process.rs +++ b/crates/ra_proc_macro/src/process.rs | |||
@@ -1,3 +1,5 @@ | |||
1 | //! Handle process life-time and message passing for proc-macro client | ||
2 | |||
1 | use crossbeam_channel::{bounded, Receiver, Sender}; | 3 | use crossbeam_channel::{bounded, Receiver, Sender}; |
2 | use ra_tt::Subtree; | 4 | use ra_tt::Subtree; |
3 | 5 | ||