minor edits; reword messages

This commit is contained in:
aaron-jack-manning
2024-01-21 13:48:08 +11:00
parent dd04b9f29f
commit 2ab97aa10d
2 changed files with 16 additions and 16 deletions

View File

@@ -15,7 +15,7 @@ fn main() -> anyhow::Result<()> {
let config : input::Config = {
let config = fs::read_to_string(&args.config)
.with_context(|| "failed to read in podcast configuration file")?;
.context("failed to read in podcast configuration file")?;
toml::from_str(&config[..])?
};