From 25dd530fb77d39f5316367a9a1e7aaca8a8f060e Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 10 Dec 2020 22:53:09 -0500 Subject: [PATCH] Improve comments --- ui/stash.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ui/stash.go b/ui/stash.go index a3546b4..6995907 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -49,7 +49,7 @@ type markdownFetchFailedMsg struct { // MODEL -// High-level state of the application. +// stashViewState is the high-level state of the file listing. type stashViewState int const ( @@ -67,6 +67,8 @@ const ( newsSection ) +// section contains definitions and state information for displaying a tab and +// its contents in the file listing view. type section struct { key sectionKey docTypes DocTypeSet @@ -74,7 +76,7 @@ type section struct { cursor int } -// Maps sections to their associated types +// map sections to their associated types. var sections = map[sectionKey]section{ localSection: { key: localSection, @@ -90,7 +92,7 @@ var sections = map[sectionKey]section{ }, } -// The current filtering state. +// filterState is the current filtering state in the file listing. type filterState int const ( @@ -99,7 +101,7 @@ const ( filterApplied // a filter is applied and user is not editing filter ) -// The state of the currently selected document. +// selectionState is the state of the currently selected document. type selectionState int const (