Skip to content

Commit eb68324

Browse files
authored
Merge pull request #987 from ialidzhikov/nit/comment
📖 Nit: improve doc string
2 parents 587ca7c + 1423c04 commit eb68324

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)