Merge pull request #1141 from monopole/releaseNotes

Update 2.1 release notes.
This commit is contained in:
Kubernetes Prow Robot
2019-05-30 17:02:23 -07:00
committed by GitHub
17 changed files with 203 additions and 34 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 {