Remove whitespace from Rust comment

This commit is contained in:
mars 2024-02-10 17:07:36 -07:00
parent 55d595ac9f
commit 5d105abe73
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ pub struct Language {
impl Language { impl Language {
/// The default Rust language config. /// The default Rust language config.
pub const RUST: Self = Self { pub const RUST: Self = Self {
comment: Cow::Borrowed("// "), comment: Cow::Borrowed("//"),
}; };
/// Extracts a header (as a list of lines) from an input in this language. /// Extracts a header (as a list of lines) from an input in this language.