Skip to content

Commit 4d3c2b7

Browse files
committed
docs: point readers to where the files in question likely are
Signed-off-by: cprivitere <[email protected]>
1 parent e0a173a commit 4d3c2b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/book/src/developer/providers/getting-started/implement-api-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To enable clients to encode and decode your API, your types must be able to be r
7575

7676
[scheme]: https://pkg.go.dev/k8s.io/apimachinery/pkg/runtime#Scheme
7777

78-
By default, Kubebuilder will provide you with a scheme builder like:
78+
By default, Kubebuilder will provide you with a scheme builder (likely in `api/v1alpha1/groupversion_info.go`) like:
7979

8080
```go
8181
import (
@@ -95,7 +95,7 @@ var (
9595
)
9696
```
9797

98-
and scheme registration that looks like:
98+
and scheme registration (likely in `api/v1alpha1/*_types.go`) that looks like:
9999

100100
```go
101101
func init() {

0 commit comments

Comments
 (0)