Skip to content
This repository was archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2381 from ethan-daocloud/typo-terminator
Browse files Browse the repository at this point in the history
Cleanup: fix some typos in code comment
  • Loading branch information
squaremo authored Aug 22, 2019
2 parents 63ddb15 + b97dab4 commit d33e974
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cluster/kubernetes/manifests.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type namespacer interface {

// manifests is an implementation of cluster.Manifests, particular to
// Kubernetes. Aside from loading manifests from files, it does some
// "post-processsing" to make sure the view of the manifests is what
// "post-processing" to make sure the view of the manifests is what
// would be applied; in particular, it fills in the namespace of
// manifests that would be given a default namespace when applied.
type manifests struct {
Expand Down
2 changes: 1 addition & 1 deletion manifests/configfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (cf *ConfigFile) ExecGenerators(ctx context.Context, generators []Generator
Error: err,
}
result = append(result, r)
// Stop exectuing on the first command error
// Stop executing on the first command error
if err != nil {
break
}
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifests.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Manifests interface {
CreateManifestPatch(originalManifests, modifiedManifests []byte, originalSource, modifiedSource string) ([]byte, error)
// ApplyManifestPatch applies a manifest patch (obtained with CreateManifestDiff) returned the patched manifests
ApplyManifestPatch(originalManifests, patchManifests []byte, originalSource, patchSource string) ([]byte, error)
// AppendManifestToBuffer concatentates manifest bytes to a
// AppendManifestToBuffer concatenates manifest bytes to a
// (possibly empty) buffer of manifest bytes; the resulting bytes
// should be parsable by `ParseManifest`.
// TODO(michael) should really be an interface rather than `*bytes.Buffer`.
Expand Down

0 comments on commit d33e974

Please sign in to comment.