updated ide-assist new dir name

This commit is contained in:
Peh 2022-04-30 21:00:41 +00:00
parent 55e7925ac8
commit e53bf7e9c2
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -41,7 +41,7 @@ r#####"
}
let buf = sourcegen::add_preamble("sourcegen_assists_docs", sourcegen::reformat(buf));
sourcegen::ensure_file_contents(
&project_root().join("crates/ide_assists/src/tests/generated.rs"),
&project_root().join("crates/ide-assists/src/tests/generated.rs"),
&buf,
);
}
@ -75,7 +75,7 @@ struct Assist {
impl Assist {
fn collect() -> Vec<Assist> {
let handlers_dir = project_root().join("crates/ide_assists/src/handlers");
let handlers_dir = project_root().join("crates/ide-assists/src/handlers");
let mut res = Vec::new();
for path in sourcegen::list_rust_files(&handlers_dir) {