Skip to content

Commit

Permalink
Merge pull request sequelize#5 from simonjefford/patch-1
Browse files Browse the repository at this point in the history
Tiny typo fix
  • Loading branch information
mikegehard committed Sep 2, 2013
2 parents 51369e8 + 9a90c1e commit d2073ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exercism/api.go
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 d2073ad

Please sign in to comment.