Merge pull request #222 from Morganamilo/atob

Fix min()
This commit is contained in:
Morgana 2018-03-08 04:08:54 +00:00 committed by GitHub
commit 6743af28dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.