From 5d105abe7392bc15f898beb322872c9d68e045d1 Mon Sep 17 00:00:00 2001 From: mars Date: Sat, 10 Feb 2024 17:07:36 -0700 Subject: [PATCH] Remove whitespace from Rust comment --- src/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse.rs b/src/parse.rs index a2213c8..a9c7056 100644 --- a/src/parse.rs +++ b/src/parse.rs @@ -30,7 +30,7 @@ pub struct Language { impl Language { /// The default Rust language config. 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.