Browse Source

Merge pull request #222 from Morganamilo/atob

Fix min()
Morgana 7 years ago
parent
commit
6743af28dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      query.go

+ 1 - 1
query.go

@@ -314,7 +314,7 @@ func min(a, b int) int {
 	if a < b {
 		return a
 	}
-	return a
+	return b
 }
 
 // Queries the aur for information about specified packages.