Compare commits

...

2 Commits

Author SHA1 Message Date
Roxie Gibson ca4001a805
docs: fixed typo in functiion comment
continuous-integration/drone/push Build is passing Details
2021-08-13 14:13:56 +01:00
Roxie Gibson e2f4ed11ec
docs: updated report card to new repo 2021-08-13 14:13:37 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
# go-abra
[![Build Status](https://build.coopcloud.tech/api/badges/coop-cloud/go-abra/status.svg?ref=refs/heads/main)](https://build.coopcloud.tech/coop-cloud/go-abra)
[![Go Report Card](https://goreportcard.com/badge/git.autonomic.zone/coop-cloud/go-abra)](https://goreportcard.com/report/git.autonomic.zone/coop-cloud/go-abra)
[![Go Report Card](https://goreportcard.com/badge/git.coopcloud.tech/coop-cloud/go-abra)](https://goreportcard.com/report/git.coopcloud.tech/coop-cloud/go-abra)
> Work-In-Progress port of [abra](https://git.autonomic.zone/coop-cloud/abra) to Golang.
> Work-In-Progress port of [abra](https://git.coopcloud.tech/coop-cloud/abra) to Golang.
See [abra](https://git.coopcloud.tech/coop-cloud/abra) for more. See our progress in [TODO.md](TODO.md).

View File

@ -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()