Skip to content

Commit

Permalink
Tiny typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjefford committed Aug 29, 2013
1 parent 51369e8 commit 9a90c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exercism/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func FetchAssignments(host string, path string, apiKey string) (as []Assignment,
}

if resp.StatusCode != http.StatusOK {
err = errors.New(fmt.Sprintf("Error fecthing assignments. HTTP Status Code: %d", resp.StatusCode))
err = errors.New(fmt.Sprintf("Error fetching assignments. HTTP Status Code: %d", resp.StatusCode))
return
}

Expand Down

0 comments on commit 9a90c1e

Please sign in to comment.