Merge pull request #8261 from davidhsingyuchen/plugins-err-typo

docs: fix typo in comment of plugin.Plugin.Err()
This commit is contained in:
Kazuyoshi Kato 2023-03-13 15:25:30 -07:00 committed by GitHub
commit 689cd12ee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ type Plugin struct {
}
// Err returns the errors during initialization.
// returns nil if not error was encountered
// returns nil if no error was encountered
func (p *Plugin) Err() error {
return p.err
}