Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_assists/src/handlers/promote_mod_file.rs')
-rw-r--r--crates/ide_assists/src/handlers/promote_mod_file.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/ide_assists/src/handlers/promote_mod_file.rs b/crates/ide_assists/src/handlers/promote_mod_file.rs
index 2ba51d1699..5991c0989f 100644
--- a/crates/ide_assists/src/handlers/promote_mod_file.rs
+++ b/crates/ide_assists/src/handlers/promote_mod_file.rs
@@ -14,12 +14,13 @@ use crate::assist_context::{AssistContext, Assists};
// Moves inline module's contents to a separate file.
//
// ```
-// // a.rs
+// //- /main.rs
+// mod a;
+// //- /a.rs
// $0fn t() {}
// ```
// ->
// ```
-// // /a/mod.rs
// fn t() {}
// ```
pub(crate) fn promote_mod_file(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {