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 ...