From fd54682109f37b89132210d064c9a70e794db2c1 Mon Sep 17 00:00:00 2001 From: Guillame Tardif Date: Fri, 27 Nov 2020 18:21:22 +0100 Subject: [PATCH] =?UTF-8?q?Display=20=E2=80=9CCreating=E2=80=9D,=20not=20?= =?UTF-8?q?=E2=80=9CCreating...=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Guillame Tardif --- progress/event.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/progress/event.go b/progress/event.go index 828ca7156..3d72efeb5 100644 --- a/progress/event.go +++ b/progress/event.go @@ -54,7 +54,7 @@ func ErrorEvent(ID string) Event { // CreatingEvent creates a new Create in progress Event func CreatingEvent(ID string) Event { - return NewEvent(ID, Working, "Creating...") + return NewEvent(ID, Working, "Creating") } // CreatedEvent creates a new Created (done) Event @@ -64,7 +64,7 @@ func CreatedEvent(ID string) Event { // RemovingEvent creates a new Removing in progress Event func RemovingEvent(ID string) Event { - return NewEvent(ID, Working, "Removing...") + return NewEvent(ID, Working, "Removing") } // RemovedEvent creates a new removed (done) Event