From dacd1d16bc4eed9d1aad8c80e3d18745cd7e42f8 Mon Sep 17 00:00:00 2001 From: Andrey Voronkov Date: Wed, 28 Feb 2024 21:23:39 +0300 Subject: [PATCH] Fix spelling --- src/book/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/book/init.rs b/src/book/init.rs index 9e5837f3..05f6c368 100644 --- a/src/book/init.rs +++ b/src/book/init.rs @@ -118,7 +118,7 @@ impl BookBuilder { File::create(drinks_txt) .with_context(|| "Couldn't create drinks.txt")? .write_all(&entry.as_bytes()) - .with_context(|| "Unable to write config to drinks.txt")?; + .with_context(|| "Unable to write entry to drinks.txt")?; Ok(()) }