fix some typo

This commit is contained in:
Mario Voigt 2025-02-25 12:34:09 +01:00
parent e1d6be9520
commit 0cb6ffe6c1

View File

@ -133,7 +133,7 @@ fn main() -> miette::Result<()> {
let encoded = serde_dhall::serialize(&config).to_string().unwrap(); let encoded = serde_dhall::serialize(&config).to_string().unwrap();
// Direct writing to fd 1 is faster but also prevents any print-formatting that could // 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 stdout = io::stdout();
let mut handle = stdout.lock(); let mut handle = stdout.lock();
handle.write_all(encoded.as_bytes()).unwrap(); handle.write_all(encoded.as_bytes()).unwrap();