From 6c1a202329520a10d63f037a8af30ab4e5ced366 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Fri, 2 Apr 2021 20:54:56 +1100 Subject: [PATCH] fix comment --- pkg/utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index d418e4b35..339bcb0a9 100644 --- a/pkg/utils/utils.go +++ b/pkg/utils/utils.go @@ -362,7 +362,7 @@ func ResolveTemplate(templateStr string, object interface{}) (string, error) { return buf.String(), nil } -// Safe will close termbox if a panic occurs so that we don't end up in a malformed +// Safe will close tcell if a panic occurs so that we don't end up in a malformed // terminal state func Safe(f func()) { panicking := true