Skip to content

Commit 9a71fb1

Browse files
Merge pull request #1086 from Denton24646/fix/csv-documentation-typo
fix: fix particular typo in clusterserviceversion_types.go
2 parents f8506a6 + d90a07a commit 9a71fb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/api/apis/operators/v1alpha1/clusterserviceversion_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ type ClusterServiceVersionCondition struct {
274274
LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty"`
275275
}
276276

277-
// OwnsCRD determines whether the current CSV owns a paritcular CRD.
277+
// OwnsCRD determines whether the current CSV owns a particular CRD.
278278
func (csv ClusterServiceVersion) OwnsCRD(name string) bool {
279279
for _, desc := range csv.Spec.CustomResourceDefinitions.Owned {
280280
if desc.Name == name {
@@ -285,7 +285,7 @@ func (csv ClusterServiceVersion) OwnsCRD(name string) bool {
285285
return false
286286
}
287287

288-
// OwnsAPIService determines whether the current CSV owns a paritcular APIService.
288+
// OwnsAPIService determines whether the current CSV owns a particular APIService.
289289
func (csv ClusterServiceVersion) OwnsAPIService(name string) bool {
290290
for _, desc := range csv.Spec.APIServiceDefinitions.Owned {
291291
apiServiceName := fmt.Sprintf("%s.%s", desc.Version, desc.Group)

0 commit comments

Comments
 (0)