Skip to content

Commit

Permalink
fix(review): done
Browse files Browse the repository at this point in the history
  • Loading branch information
Mte90 committed Sep 18, 2024
1 parent 52c7449 commit 9b409c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/statement/comment_doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl SyntaxModule<ParserMetadata> for CommentDoc {
continue;
}
let delimiter = if last_char == '\n' { "" } else { " " };
self.value.push_str(&format!("{}{} ", delimiter, token.word[3..].trim()));
self.value.push_str(&format!("{}{}", delimiter, token.word[3..].trim()));
} else {
break;
}
Expand Down

0 comments on commit 9b409c5

Please sign in to comment.