aboutsummaryrefslogtreecommitdiffstats
path: root/src/structs.rs
diff options
context:
space:
mode:
authorNathan Jaremko2019-01-15 23:55:28 -0500
committerNathan Jaremko2019-01-15 23:55:28 -0500
commit2059bdcd8582e2e64463f43dac2b719266d58323 (patch)
tree14c32a07bf45946ee9eef0e0c5d720dbf361ee88 /src/structs.rs
parent0d5c469c23efc2bccca8878142a07d99a2dd06b2 (diff)
downloadpodcast-2059bdcd8582e2e64463f43dac2b719266d58323.tar.bz2
Improve download all episodes message prompt0.7.5
Diffstat (limited to 'src/structs.rs')
-rw-r--r--src/structs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.rs b/src/structs.rs
index 0fde2b3..9b921ee 100644
--- a/src/structs.rs
+++ b/src/structs.rs
@@ -228,7 +228,7 @@ impl Podcast {
}
pub fn download(&self) -> Result<()> {
- print!("You are about to download all episodes (y/n): ");
+ print!("You are about to download all episodes of {} (y/n): ", self.title());
io::stdout().flush().ok();
let mut input = String::new();
io::stdin()