remove duplicated words in heap.go and interfaces.go

Kubernetes-commit: dd4a8f9cab80aaf280ed5ed95a6facc26c00d928
This commit is contained in:
song
2018-09-17 18:00:19 +08:00
committed by Kubernetes Publisher
parent a5d40177db
commit bd418b4186
2 changed files with 2 additions and 2 deletions

View File

@@ -34,6 +34,6 @@ type ScaleInterface interface {
// Get fetches the scale of the given scalable resource.
Get(resource schema.GroupResource, name string) (*autoscalingapi.Scale, error)
// Update updates the scale of the the given scalable resource.
// Update updates the scale of the given scalable resource.
Update(resource schema.GroupResource, scale *autoscalingapi.Scale) (*autoscalingapi.Scale, error)
}