From 10255407fa09bcc4e5a3e2d9603b9e62f496a21b Mon Sep 17 00:00:00 2001 From: Vladimir Belousov Date: Thu, 25 Apr 2024 14:01:33 +0300 Subject: [PATCH] docs: correct spelling of Operator scope 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 ...