Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(doc): generate in custom path and check if amber file exist #465

Merged
merged 8 commits into from
Sep 19, 2024
Prev Previous commit
Next Next commit
fix(review): done

자동등록방지를 위해 보안절차를 거치고 있습니다.

Please prove that you are human.

Mte90 committed Sep 18, 2024
commit 9b409c5257ca24b67c3be7b8f9a563300aa9b1ae
2 changes: 1 addition & 1 deletion src/modules/statement/comment_doc.rs
Original file line number Diff line number Diff line change
@@ -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;
}