From ca4001a8054984d24b95d3c726e59a36ab7a1839 Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Fri, 13 Aug 2021 14:13:56 +0100 Subject: [PATCH] docs: fixed typo in functiion comment --- cli/formatter/formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/formatter/formatter.go b/cli/formatter/formatter.go index 5069c9d9..8890b6ae 100644 --- a/cli/formatter/formatter.go +++ b/cli/formatter/formatter.go @@ -24,7 +24,7 @@ func RemoveSha(str string) string { return strings.Split(str, "@")[0] } -// HumanDuration from docker/cli RunningFor() to be accessable outside of the class +// HumanDuration from docker/cli RunningFor() to be accessible outside of the class func HumanDuration(timestamp int64) string { date := time.Unix(timestamp, 0) now := time.Now().UTC()