Skip to content

Commit

Permalink
charset: fix typo (pingcap#1859)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaut authored and coocood committed Oct 23, 2016
1 parent 037dc11 commit aec737e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/charset/charset.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func GetDefaultCollation(charset string) (string, error) {
}
c, ok := charsets[charset]
if !ok {
return "", errors.Errorf("Unkown charset %s", charset)
return "", errors.Errorf("Unknown charset %s", charset)
}
return c.DefaultCollation.Name, nil
}
Expand Down

0 comments on commit aec737e

Please sign in to comment.