From 2d8f8c2d64a82f744f938efd60cb5d227cb96ac1 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 12 Mar 2021 13:28:38 +0100 Subject: [PATCH] Fix typo --- ui/stashhelp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/stashhelp.go b/ui/stashhelp.go index 4dbe530..fea1fdf 100644 --- a/ui/stashhelp.go +++ b/ui/stashhelp.go @@ -16,7 +16,7 @@ type helpEntry struct{ key, val string } type helpColumn []helpEntry // newHelpColumn creates a help column from pairs of string arguments -// represeting keys and values. If the arguements are not even (and therein +// represeting keys and values. If the arguments are not even (and therein // not every key has a matching value) the function will panic. func newHelpColumn(pairs ...string) (h helpColumn) { if len(pairs)%2 != 0 {