From e4756cb4f6e66097638b9d101589358976be2ba8 Mon Sep 17 00:00:00 2001 From: Chetan Khilosiya Date: Tue, 23 Feb 2021 00:17:48 +0530 Subject: 7526: Rename crate assists to ide_assists. --- xtask/src/codegen/gen_assists_docs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xtask/src/codegen') diff --git a/xtask/src/codegen/gen_assists_docs.rs b/xtask/src/codegen/gen_assists_docs.rs index 51f58180c..1ae1343a5 100644 --- a/xtask/src/codegen/gen_assists_docs.rs +++ b/xtask/src/codegen/gen_assists_docs.rs @@ -32,7 +32,7 @@ struct Assist { impl Assist { fn collect() -> Result> { let mut res = Vec::new(); - for path in rust_files_in(&project_root().join("crates/assists/src/handlers")) { + for path in rust_files_in(&project_root().join("crates/ide_assists/src/handlers")) { collect_file(&mut res, path.as_path())?; } res.sort_by(|lhs, rhs| lhs.id.cmp(&rhs.id)); @@ -135,7 +135,7 @@ r#####" buf.push_str(&test) } let buf = reformat(&buf)?; - codegen::update(&project_root().join("crates/assists/src/tests/generated.rs"), &buf, mode) + codegen::update(&project_root().join("crates/ide_assists/src/tests/generated.rs"), &buf, mode) } fn hide_hash_comments(text: &str) -> String { -- cgit v1.2.3