Merge pull request #99439 from minbaev/fix-typos

Fix typo in util.go
This commit is contained in:
Kubernetes Prow Robot 2021-03-04 11:00:22 -08:00 committed by GitHub
commit 0d4924e371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ func mustSetupScheduler() (util.ShutdownFunc, coreinformers.PodInformer, clients
}
// Returns the list of scheduled pods in the specified namespaces.
// Note that no namespces specified matches all namespaces.
// Note that no namespaces specified matches all namespaces.
func getScheduledPods(podInformer coreinformers.PodInformer, namespaces ...string) ([]*v1.Pod, error) {
pods, err := podInformer.Lister().List(labels.Everything())
if err != nil {