Fix spelling

This commit is contained in:
Andrey Voronkov 2024-02-28 21:23:39 +03:00
parent 5e6bacf545
commit dacd1d16bc
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ impl BookBuilder {
File::create(drinks_txt) File::create(drinks_txt)
.with_context(|| "Couldn't create drinks.txt")? .with_context(|| "Couldn't create drinks.txt")?
.write_all(&entry.as_bytes()) .write_all(&entry.as_bytes())
.with_context(|| "Unable to write config to drinks.txt")?; .with_context(|| "Unable to write entry to drinks.txt")?;
Ok(()) Ok(())
} }