Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit 1fdd36c

Browse files
authored
Merge pull request #966 from jmkim/fix-typo
all: remove extra 's' in "mismatch"
2 parents c2ab4ac + 156d632 commit 1fdd36c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/refspec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const (
1515

1616
var (
1717
ErrRefSpecMalformedSeparator = errors.New("malformed refspec, separators are wrong")
18-
ErrRefSpecMalformedWildcard = errors.New("malformed refspec, missmatched number of wildcards")
18+
ErrRefSpecMalformedWildcard = errors.New("malformed refspec, mismatched number of wildcards")
1919
)
2020

2121
// RefSpec is a mapping from local branches to remote references

plumbing/format/index/decoder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
// ErrMalformedSignature is returned by Decode when the index header file is
2222
// malformed
2323
ErrMalformedSignature = errors.New("malformed index signature file")
24-
// ErrInvalidChecksum is returned by Decode if the SHA1 hash missmatch with
24+
// ErrInvalidChecksum is returned by Decode if the SHA1 hash mismatch with
2525
// the read content
2626
ErrInvalidChecksum = errors.New("invalid checksum")
2727

0 commit comments

Comments
 (0)