From 2788dce677000c9d81c7f89cb77c6a414343c375 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Mon, 27 Jan 2025 18:28:15 +0100 Subject: [PATCH] style: remove trailing spaces. --- fmt/src/processor/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/src/processor/tests.rs b/fmt/src/processor/tests.rs index c3f39dc6..aadf4b74 100644 --- a/fmt/src/processor/tests.rs +++ b/fmt/src/processor/tests.rs @@ -10,7 +10,7 @@ use crate::tokens::{categories, Token}; fn tokenize(source: &str) -> Vec { let events = Parser::new(source.as_bytes()).into_cst_stream().whitespaces(false); - + tokens::Tokens::new(source.as_bytes(), events).collect() }