summaryrefslogtreecommitdiffstats
path: root/pkg/utils
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-04-02 20:54:56 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-04-06 19:34:32 +1000
commit0b424370524cbc95a5526545f17543a41badcab1 (patch)
treea4e154a4501ec715f7bd1533e20a0d234a4305ea /pkg/utils
parentae0f7507702d86af5b878aa7956253e014a63e82 (diff)
fix comment
Diffstat (limited to 'pkg/utils')
-rw-r--r--pkg/utils/utils.go2
1 files changed, 1 insertions, 1 deletions
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