Merge pull request #614 from MikeRogers0/refactor/fix-spelling-mistakes

Fixing 2 typos
This commit is contained in:
Mislav Marohnić 2020-03-09 11:44:08 +01:00 committed by GitHub
commit 115b4b5ee9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ import (
// FakeHTTP provides a mechanism by which to stub HTTP responses through
type FakeHTTP struct {
// Requests stores references to sequental requests that RoundTrip has received
// Requests stores references to sequential requests that RoundTrip has received
Requests []*http.Request
count int
responseStubs []*http.Response

View file

@ -25,7 +25,7 @@ type Context interface {
}
// cap the number of git remotes looked up, since the user might have an
// unusally large number of git remotes
// unusually large number of git remotes
const maxRemotesForLookup = 5
func ResolveRemotesToRepos(remotes Remotes, client *api.Client, base string) (ResolvedRemotes, error) {