From 0e1de5df43f5b8bf0b74f673389a0954a24b31ca Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 21 Mar 2016 19:32:45 -0400 Subject: [PATCH] Interval: Improved feedback formatting --- src/Interval.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interval.cpp b/src/Interval.cpp index 9f21d4cd..ad89afaa 100644 --- a/src/Interval.cpp +++ b/src/Interval.cpp @@ -162,7 +162,7 @@ std::string Interval::summarize () const // TODO Colorize tags. if (_tags.size ()) { - out << ", using tags"; + out << ", using tags:"; for (auto& tag : _tags) out << ' ' << quoteIfNeeded (tag); }