From de40e5091cc33bbd08592aa1da0007d9bfad6eb9 Mon Sep 17 00:00:00 2001 From: Vladimir Belousov <89217163+vbelouso@users.noreply.github.com> Date: Wed, 1 May 2024 18:05:49 +0300 Subject: [PATCH] docs: correct spelling of Operator scope (#6728) Signed-off-by: Vladimir Belousov --- .../en/docs/building-operators/golang/operator-scope.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/en/docs/building-operators/golang/operator-scope.md b/website/content/en/docs/building-operators/golang/operator-scope.md index eeb8a3ad0a..05b405080c 100644 --- a/website/content/en/docs/building-operators/golang/operator-scope.md +++ b/website/content/en/docs/building-operators/golang/operator-scope.md @@ -44,7 +44,7 @@ mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{ ### Watching resources in specific Namespaces -To restrict the scope of the [Manager's][ctrl-manager] cache to a specific Namespace set the `Cache.DefaultNamespaces' +To restrict the scope of the [Manager's][ctrl-manager] cache to a specific Namespace, set `Cache.DefaultNamespaces` field in [Options][ctrl-options]: ```go @@ -64,7 +64,7 @@ mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{ ### Watching resources in a set of Namespaces -It is also possible to use 'DefaultNamepsaces' to watch and manage resources in a set of Namespaces: +It is also possible to use `DefaultNamespaces` to watch and manage resources in a set of Namespaces: ```go ...