Update 2.1 release notes before release.

This commit is contained in:
jregan
2019-05-30 13:32:41 -07:00
committed by Jeffrey Regan
parent e1b59c93de
commit 1dd448e65c
16 changed files with 181 additions and 51 deletions

View File

@@ -26,7 +26,7 @@ func SortArrayAndComputeHash(s []string) (string, error) {
func Encode(hex string) (string, error) {
if len(hex) < 10 {
return "", fmt.Errorf(
"input length must be at least 10.")
"input length must be at least 10")
}
enc := []rune(hex[:10])
for i := range enc {