From 6a42c36e65a9d0ceb8c2309b94ec900d9d78f5da Mon Sep 17 00:00:00 2001 From: l0stman Date: Wed, 10 May 2017 08:38:40 +0300 Subject: [PATCH] Fix typo --- PanicAndRecover.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {