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

Commit 08f9e70

Browse files
committed
fix misspellings
1 parent ec1a57f commit 08f9e70

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

blame.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type Blame struct {
3838
// Co-changed Lines", in proceedings of the Mining Software
3939
// Repositories workshop, Shanghai, May 22-23, 2006.
4040
//
41-
// Each node is asigned a commit: Start by the nodes in the first
41+
// Each node is assigned a commit: Start by the nodes in the first
4242
// commit. Assign that commit as the creator of all its lines.
4343
//
4444
// Then jump to the nodes in the next commit, and calculate the diff

clients/ssh/git_upload_pack.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ func (s *GitUploadPackService) Fetch(r *common.GitUploadPackRequest) (rc io.Read
172172
if err != nil {
173173
return nil, err
174174
}
175-
// TODO: inestigate this *ExitError type (command fails or
175+
// TODO: investigate this *ExitError type (command fails or
176176
// doesn't complete successfully), as it is happenning all
177-
// the time, but everyting seems to work fine.
177+
// the time, but everything seems to work fine.
178178
err = session.Wait()
179179
if err != nil {
180180
if _, ok := err.(*ssh.ExitError); !ok {

commit.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ func (c *Commit) File(path string) (file *File, err error) {
5252
// ID returns the object ID of the commit. The returned value will always match
5353
// the current value of Commit.Hash.
5454
//
55-
// ID is present to fufill the Object interface.
55+
// ID is present to fulfill the Object interface.
5656
func (c *Commit) ID() core.Hash {
5757
return c.Hash
5858
}
5959

6060
// Type returns the type of object. It always returns core.CommitObject.
6161
//
62-
// Type is present to fufill the Object interface.
62+
// Type is present to fulfill the Object interface.
6363
func (c *Commit) Type() core.ObjectType {
6464
return core.CommitObject
6565
}

formats/packfile/reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type Reader struct {
4040
// MaxObjectsLimit is the limit of objects to be load in the packfile, if
4141
// a packfile excess this number an error is throw, the default value
4242
// is defined by DefaultMaxObjectsLimit, usually the default limit is more
43-
// than enough to work with any repository, working extremly big repositories
43+
// than enough to work with any repository, working extremely big repositories
4444
// where the number of object is bigger the memory can be exhausted.
4545
MaxObjectsLimit uint32
4646

objects.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ type Blob struct {
5151
// ID returns the object ID of the blob. The returned value will always match
5252
// the current value of Blob.Hash.
5353
//
54-
// ID is present to fufill the Object interface.
54+
// ID is present to fulfill the Object interface.
5555
func (b *Blob) ID() core.Hash {
5656
return b.Hash
5757
}
5858

5959
// Type returns the type of object. It always returns core.BlobObject.
6060
//
61-
// Type is present to fufill the Object interface.
61+
// Type is present to fulfill the Object interface.
6262
func (b *Blob) Type() core.ObjectType {
6363
return core.BlobObject
6464
}

tag.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ func (t *Tag) Type() core.ObjectType {
3838
// ID returns the object ID of the tag, not the object that the tag references.
3939
// The returned value will always match the current value of Tag.Hash.
4040
//
41-
// ID is present to fufill the Object interface.
41+
// ID is present to fulfill the Object interface.
4242
func (t *Tag) ID() core.Hash {
4343
return t.Hash
4444
}
4545

4646
// Type returns the type of object. It always returns core.TagObject.
4747
//
48-
// Type is present to fufill the Object interface.
48+
// Type is present to fulfill the Object interface.
4949
func (t *Tag) Type() core.ObjectType {
5050
return core.TagObject
5151
}

tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func (t *Tree) Files() *FileIter {
125125
// ID returns the object ID of the tree. The returned value will always match
126126
// the current value of Tree.Hash.
127127
//
128-
// ID is present to fufill the Object interface.
128+
// ID is present to fulfill the Object interface.
129129
func (t *Tree) ID() core.Hash {
130130
return t.Hash
131131
}

0 commit comments

Comments
 (0)