From 0cb6ffe6c124edeec0a396cb1ffaeb2be7d796e6 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Tue, 25 Feb 2025 12:34:09 +0100 Subject: [PATCH] fix some typo --- bin/bffhd/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bffhd/main.rs b/bin/bffhd/main.rs index 5eb1d38..a3c92a6 100644 --- a/bin/bffhd/main.rs +++ b/bin/bffhd/main.rs @@ -133,7 +133,7 @@ fn main() -> miette::Result<()> { let encoded = serde_dhall::serialize(&config).to_string().unwrap(); // Direct writing to fd 1 is faster but also prevents any print-formatting that could - // invalidate the generated TOML + // invalidate the generated DHALL let stdout = io::stdout(); let mut handle = stdout.lock(); handle.write_all(encoded.as_bytes()).unwrap();