diff --git a/PanicAndRecover.md b/PanicAndRecover.md index a8ffb256..989cbbef 100644 --- a/PanicAndRecover.md +++ b/PanicAndRecover.md @@ -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 {