Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
windayski committed May 30, 2020
1 parent 24a76e8 commit e42c674
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exec/testing/fake_exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type FakeExec struct {
// and with the exact same arguments
ExactOrder bool
// DisableScripts removes the requirement that a slice of FakeCommandAction be
// propulated before calling Command(). This makes the fakeexec (and subsequent
// populated before calling Command(). This makes the fakeexec (and subsequent
// calls to Run() or CombinedOutput() always return success and there is no
// ability to set their output.
DisableScripts bool
Expand Down
2 changes: 1 addition & 1 deletion path/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const (
// the symlink exists.
CheckFollowSymlink LinkTreatment = iota

// CheckSymlinkOnly does not follow the symlink and verfies only that they
// CheckSymlinkOnly does not follow the symlink and verifies only that they
// symlink itself exists.
CheckSymlinkOnly
)
Expand Down
2 changes: 1 addition & 1 deletion third_party/forked/golang/reflect/deep_equal.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func (e Equalities) deepValueEqual(v1, v2 reflect.Value, visited map[visit]bool,
//
// An empty slice *is* equal to a nil slice for our purposes; same for maps.
//
// Unexported field members cannot be compared and will cause an imformative panic; you must add an Equality
// Unexported field members cannot be compared and will cause an informative panic; you must add an Equality
// function for these types.
func (e Equalities) DeepEqual(a1, a2 interface{}) bool {
if a1 == nil || a2 == nil {
Expand Down

0 comments on commit e42c674

Please sign in to comment.