From 323c2fba18bc0d46f9582b53b99d87f68afddc2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Sat, 26 Aug 2023 09:43:59 +0200 Subject: [PATCH] fix: add missing line break --- src/pomodoro.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pomodoro.rs b/src/pomodoro.rs index 8cd5103..0c051cd 100644 --- a/src/pomodoro.rs +++ b/src/pomodoro.rs @@ -19,7 +19,7 @@ impl Display for Pomodoro { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!( f, - "Pomodoro ({}, {}, {}) currently {} with {} remaining.", + "Pomodoro ({}, {}, {}) currently {} with {} remaining.\n", humantime::format_duration(self.work), humantime::format_duration(self.pause), humantime::format_duration(self.long_pause),