Skip to content

Commit

Permalink
codespell:ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
hilmarf committed Jan 8, 2025
1 parent 29c847e commit d4c58c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/utils/runtime/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ func Validate(o interface{}) error {
return errors.New("type missing")
}
}
if v, ok := o.(Validater); ok {
if v, ok := o.(Validater); ok { // codespell:ignore
return v.Validate()
} // codespell:ignore
}
return nil
}

0 comments on commit d4c58c4

Please sign in to comment.