Fixed typo

This commit is contained in:
Michele Guerini Rocco 2014-02-21 21:31:32 +01:00
parent f52d9b78f2
commit 605422e60d

View File

@ -10,7 +10,7 @@ func Chr(x rune) string {
func Ord(x string) rune {
if len(x) != 1 {
panic("Ord require a string with lenght 1")
panic("Ord requires a string with lenght 1")
}
return rune(x[0])
}