Skip to content

Commit e42c674

Browse files
committed
fix typos
1 parent 24a76e8 commit e42c674

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exec/testing/fake_exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type FakeExec struct {
3333
// and with the exact same arguments
3434
ExactOrder bool
3535
// DisableScripts removes the requirement that a slice of FakeCommandAction be
36-
// propulated before calling Command(). This makes the fakeexec (and subsequent
36+
// populated before calling Command(). This makes the fakeexec (and subsequent
3737
// calls to Run() or CombinedOutput() always return success and there is no
3838
// ability to set their output.
3939
DisableScripts bool

path/file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const (
3030
// the symlink exists.
3131
CheckFollowSymlink LinkTreatment = iota
3232

33-
// CheckSymlinkOnly does not follow the symlink and verfies only that they
33+
// CheckSymlinkOnly does not follow the symlink and verifies only that they
3434
// symlink itself exists.
3535
CheckSymlinkOnly
3636
)

third_party/forked/golang/reflect/deep_equal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ func (e Equalities) deepValueEqual(v1, v2 reflect.Value, visited map[visit]bool,
234234
//
235235
// An empty slice *is* equal to a nil slice for our purposes; same for maps.
236236
//
237-
// Unexported field members cannot be compared and will cause an imformative panic; you must add an Equality
237+
// Unexported field members cannot be compared and will cause an informative panic; you must add an Equality
238238
// function for these types.
239239
func (e Equalities) DeepEqual(a1, a2 interface{}) bool {
240240
if a1 == nil || a2 == nil {

0 commit comments

Comments
 (0)