Merge pull request #38 from ibudiallo/goscopes

add the valid return signature for the getStringResult() function
This commit is contained in:
Lasse Martin Jakobsen 2021-02-11 12:13:55 +01:00 committed by GitHub
commit c281014dfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -475,7 +475,7 @@ func getStringResult(num int) (string, error) {
case 64:
// do nothing
}
return ""
return "", nil
}
func main() {