Skip to content

Commit

Permalink
Fix error message (#628)
Browse files Browse the repository at this point in the history
Signed-off-by: zhujian <[email protected]>
  • Loading branch information
zhujian7 authored Sep 23, 2024
1 parent 8a2a776 commit abec12a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/operator/operators/crdmanager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ type RemainingCRDError struct {
}

func (r *RemainingCRDError) Error() string {
return fmt.Sprintf("Thera are still reaming CRDs: %s", strings.Join(r.RemainingCRDs, ","))
return fmt.Sprintf("There are still remaining CRDs: %s", strings.Join(r.RemainingCRDs, ","))
}

func NewManager[T CRD](client crdClient[T], equalFunc func(old, new T) bool) *Manager[T] {
Expand Down

0 comments on commit abec12a

Please sign in to comment.