From 18a0d5112f54327531f492289d67152097546228 Mon Sep 17 00:00:00 2001 From: David Xia Date: Mon, 1 Jul 2024 14:21:10 -0400 Subject: [PATCH] Update using_an_external_type.md fix typos in file names --- docs/book/src/reference/using_an_external_type.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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