diff --git a/docs/book/src/reference/using_an_external_type.md b/docs/book/src/reference/using_an_external_type.md index b469f9c133..b9a531865c 100644 --- a/docs/book/src/reference/using_an_external_type.md +++ b/docs/book/src/reference/using_an_external_type.md @@ -121,7 +121,7 @@ func init() { ### Use the correct imports for your API and uncomment the controlled resource -file: internal/controllers/externaltype_controllers.go +file: internal/controllers/externaltype_controller.go ```go package controllers @@ -142,7 +142,7 @@ func (r *ExternalTypeReconciler) SetupWithManager(mgr ctrl.Manager) error { Note that core resources may simply be imported by depending on the API's from upstream Kubernetes and do not need additional `AddToScheme` registrations: -file: internal/controllers/externaltype_controllers.go +file: internal/controllers/externaltype_controller.go ```go package controllers // contains core resources like Deployment