From 7722b6e6bca9f65ad2b387c160473be0c975fec7 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 13 Nov 2020 15:59:23 -0500 Subject: [PATCH] Minor comment improvement --- ui/stash.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/stash.go b/ui/stash.go index 11c1c04..6cb2825 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -698,7 +698,7 @@ func stashUpdate(msg tea.Msg, m stashModel) (stashModel, tea.Cmd) { } } - // Update the text input component + // Update the search text input component newSearchInputModel, cmd := textinput.Update(msg, m.searchInput) m.searchInput = newSearchInputModel cmds = append(cmds, cmd) @@ -731,7 +731,7 @@ func stashUpdate(msg tea.Msg, m stashModel) (stashModel, tea.Cmd) { } } - // Update the text input component used to set notes + // Update the note text input component newNoteInputModel, cmd := textinput.Update(msg, m.noteInput) m.noteInput = newNoteInputModel cmds = append(cmds, cmd)