aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_text_edit/src/lib.rs
diff options
context:
space:
mode:
authorPavan Kumar Sunkara <[email protected]>2020-04-24 20:57:10 +0100
committerPavan Kumar Sunkara <[email protected]>2020-05-14 10:14:46 +0100
commit9f0a7eb97b4e047cebbe51ffd6f9e2092dd63e00 (patch)
treee8378dc70fe7882aafb0909d37f433aa43ddcd9c /crates/ra_text_edit/src/lib.rs
parent530a35f3f949d70c53accede35fa561429585bc1 (diff)
Make some stuff public so that they can be reused by other tools
Diffstat (limited to 'crates/ra_text_edit/src/lib.rs')
-rw-r--r--crates/ra_text_edit/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_text_edit/src/lib.rs b/crates/ra_text_edit/src/lib.rs
index 37f77cc47..c4f945101 100644
--- a/crates/ra_text_edit/src/lib.rs
+++ b/crates/ra_text_edit/src/lib.rs
@@ -21,7 +21,7 @@ pub struct TextEdit {
21 indels: Vec<Indel>, 21 indels: Vec<Indel>,
22} 22}
23 23
24#[derive(Debug, Default)] 24#[derive(Debug, Default, Clone)]
25pub struct TextEditBuilder { 25pub struct TextEditBuilder {
26 indels: Vec<Indel>, 26 indels: Vec<Indel>,
27} 27}