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 {
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.
3737func 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.
6666func ConfigInto (config * rest.Config , i interface {}) (bool , error ) {
6767 if s , ok := i .(Config ); ok {
6868 return true , s .InjectConfig (config )
You can’t perform that action at this time.
0 commit comments