File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ type Cache interface {
33
33
}
34
34
35
35
// 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.
37
37
func CacheInto (c cache.Cache , i interface {}) (bool , error ) {
38
38
if s , ok := i .(Cache ); ok {
39
39
return true , s .InjectCache (c )
@@ -62,7 +62,7 @@ type Config interface {
62
62
}
63
63
64
64
// 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.
66
66
func ConfigInto (config * rest.Config , i interface {}) (bool , error ) {
67
67
if s , ok := i .(Config ); ok {
68
68
return true , s .InjectConfig (config )
You can’t perform that action at this time.
0 commit comments