Skip to content

Commit

Permalink
Fix spelling errors
Browse files Browse the repository at this point in the history
Produced via:
  `github.com/client9/misspell`
/assign ImJasonH
/cc ImJasonH
  • Loading branch information
mattmoor authored and tekton-robot committed Dec 19, 2019
1 parent aa8d35e commit 2add7d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/git-init/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func main() {
}
if submodules {
if err := git.SubmoduleFetch(logger, fetchSpec.Path); err != nil {
logger.Fatalf("Error initalizing or fetching the git submodules")
logger.Fatalf("Error initializing or fetching the git submodules")
}
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/pipeline/v1alpha1/storage_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
PipelineResourceTypeGCS PipelineResourceType = "gcs"

// PipelineResourceTypeBuildGCS is the subtype for the BuildGCSResources, which is simialr to the GCSResource but
// with additional funcitonality that was added to be compatible with knative build.
// with additional functionality that was added to be compatible with knative build.
PipelineResourceTypeBuildGCS PipelineResourceType = "build-gcs"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/reconciler/taskrun/taskrun_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ func TestReconcileOnCompletedTaskRun(t *testing.T) {
t.Fatalf("Expected completed TaskRun %s to exist but instead got error when getting it: %v", taskRun.Name, err)
}
if d := cmp.Diff(taskSt, newTr.Status.GetCondition(apis.ConditionSucceeded), ignoreLastTransitionTime); d != "" {
t.Fatalf("Did not get expected conditon (-want, +got): %v", d)
t.Fatalf("Did not get expected condition (-want, +got): %v", d)
}
}

Expand Down

0 comments on commit 2add7d2

Please sign in to comment.