diff options
Diffstat (limited to 'helix-core/src/comment.rs')
-rw-r--r-- | helix-core/src/comment.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/comment.rs b/helix-core/src/comment.rs index 5bcf3767..c3b91b4f 100644 --- a/helix-core/src/comment.rs +++ b/helix-core/src/comment.rs @@ -37,6 +37,7 @@ fn find_line_comment( (commented, skipped, min) } +#[must_use] pub fn toggle_line_comments(doc: &Rope, selection: &Selection) -> Transaction { let text = doc.slice(..); let mut changes: Vec<Change> = Vec::new(); |