We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3c2b7 commit bf64326Copy full SHA for bf64326
docs/book/src/developer/providers/getting-started/implement-api-types.md
@@ -99,7 +99,7 @@ and scheme registration (likely in `api/v1alpha1/*_types.go`) that looks like:
99
100
```go
101
func init() {
102
- SchemeBuilder.Register(&Captain{}, &CaptainList{})
+ SchemeBuilder.Register(&MailgunCluster{}, &MailgunClusterList{})
103
}
104
```
105
@@ -141,7 +141,7 @@ and register types as below:
141
142
143
144
- objectTypes = append(objectTypes, &Captain{}, &CaptainList{})
+ objectTypes = append(objectTypes, &MailgunCluster{}, &MailgunClusterList{})
145
146
147
0 commit comments