Fix typo

l0stman 2017-05-10 08:38:40 +03:00
parent 9972bea2c9
commit 6a42c36e65

@ -26,7 +26,7 @@ func (e *ParseError) String() string {
return fmt.Sprintf("pkg: error parsing %q as int", e.Word)
}
// Parse parses the space-separated words in in put as integers.
// Parse parses the space-separated words in input as integers.
func Parse(input string) (numbers []int, err error) {
defer func() {
if r := recover(); r != nil {