diff --git a/src/compose/comment_strip_iter.rs b/src/compose/comment_strip_iter.rs index 4e74ea7..4d12a5a 100644 --- a/src/compose/comment_strip_iter.rs +++ b/src/compose/comment_strip_iter.rs @@ -3,7 +3,7 @@ use std::{borrow::Cow, str::Lines}; use regex::Regex; static RE_COMMENT: once_cell::sync::Lazy = - once_cell::sync::Lazy::new(|| Regex::new(r"(\/\/|\/\*|\*\/)").unwrap()); + once_cell::sync::Lazy::new(|| Regex::new(r"(//|/\*|\*/)").unwrap()); pub struct CommentReplaceIter<'a> { lines: &'a mut Lines<'a>,