about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDropDemBits <r3usrlnd@gmail.com>2023-03-31 14:43:24 -0400
committerDropDemBits <r3usrlnd@gmail.com>2023-03-31 14:43:24 -0400
commitd689fd30bc8be66bda9b9a2d787bbc236a1ba587 (patch)
treee033f3693146ca2554ab959e44a4abbde7d89640
parent17e31b7d3b1dd6f42a5a4c99c2e07d5d035345ac (diff)
downloadrust-d689fd30bc8be66bda9b9a2d787bbc236a1ba587.tar.gz
rust-d689fd30bc8be66bda9b9a2d787bbc236a1ba587.zip
Remove outdated comment in sourcegen
`CommentBlock::extract` does handle blank lines in comment blocks
-rw-r--r--crates/ide-assists/src/tests/sourcegen.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/ide-assists/src/tests/sourcegen.rs b/crates/ide-assists/src/tests/sourcegen.rs
index b4f50c7fb26..3da90e9052f 100644
--- a/crates/ide-assists/src/tests/sourcegen.rs
+++ b/crates/ide-assists/src/tests/sourcegen.rs
@@ -90,8 +90,6 @@ impl Assist {
             let comment_blocks = sourcegen::CommentBlock::extract("Assist", &text);
 
             for block in comment_blocks {
-                // FIXME: doesn't support blank lines yet, need to tweak
-                // `extract_comment_blocks` for that.
                 let id = block.id;
                 assert!(
                     id.chars().all(|it| it.is_ascii_lowercase() || it == '_'),