Skip to content

Commit 36711f4

Browse files
ialidzhikovvincepri
authored andcommitted
Nit: improve doc string
Signed-off-by: ialidzhikov <[email protected]>
1 parent 5cc2e8f commit 36711f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/runtime/inject/inject.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type Cache interface {
3333
}
3434

3535
// CacheInto will set informers on i and return the result if it implements Cache. Returns
36-
//// false if i does not implement Cache.
36+
// false if i does not implement Cache.
3737
func CacheInto(c cache.Cache, i interface{}) (bool, error) {
3838
if s, ok := i.(Cache); ok {
3939
return true, s.InjectCache(c)
@@ -62,7 +62,7 @@ type Config interface {
6262
}
6363

6464
// ConfigInto will set config on i and return the result if it implements Config. Returns
65-
//// false if i does not implement Config.
65+
// false if i does not implement Config.
6666
func ConfigInto(config *rest.Config, i interface{}) (bool, error) {
6767
if s, ok := i.(Config); ok {
6868
return true, s.InjectConfig(config)

0 commit comments

Comments
 (0)