Skip to content

Commit 9a2c7a6

Browse files
authored
Typo fix in client.go
does not exists->does not exist
1 parent d137775 commit 9a2c7a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boskos/crds/client.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ type ClientInterface interface {
173173
NewCollection() Collection
174174
// Create a new object
175175
Create(obj Object) (Object, error)
176-
// Update an existing object, fails if object does not exists
176+
// Update an existing object, fails if object does not exist
177177
Update(obj Object) (Object, error)
178-
// Delete an existing object, fails if objects does not exists
178+
// Delete an existing object, fails if objects does not exist
179179
Delete(name string, options *v1.DeleteOptions) error
180180
// Get an existing object
181181
Get(name string) (Object, error)

0 commit comments

Comments
 (0)