From 605422e60d9389bfd430366a0c7a1147e582290c Mon Sep 17 00:00:00 2001 From: Michele Guerini Rocco Date: Fri, 21 Feb 2014 21:31:32 +0100 Subject: [PATCH] Fixed typo --- py/str.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/str.go b/py/str.go index 70ac4d5..d68a884 100644 --- a/py/str.go +++ b/py/str.go @@ -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]) }