Browse Source

Merge pull request #815 from Morganamilo/fix#812

Fix each iota not starting at 0
Anna 6 years ago
parent
commit
91cf1e27a1
1 changed files with 4 additions and 0 deletions
  1. 4 0
      config.go

+ 4 - 0
config.go

@@ -18,11 +18,15 @@ const (
 	numberMenu = iota
 	numberMenu = iota
 	detailed
 	detailed
 	minimal
 	minimal
+)
 
 
+const (
 	// Describes Sorting method for numberdisplay
 	// Describes Sorting method for numberdisplay
 	bottomUp = iota
 	bottomUp = iota
 	topDown
 	topDown
+)
 
 
+const (
 	modeAUR targetMode = iota
 	modeAUR targetMode = iota
 	modeRepo
 	modeRepo
 	modeAny
 	modeAny