Remove outdated comment in sourcegen

`CommentBlock::extract` does handle blank lines in comment blocks
This commit is contained in:
DropDemBits 2023-03-31 14:43:24 -04:00
parent 17e31b7d3b
commit d689fd30bc
No known key found for this signature in database
GPG Key ID: 7FE02A6C1EDFA075

View File

@ -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 == '_'),