Modify comment syntax error (#5094)

This commit is contained in:
王哈哈
2022-11-10 18:22:37 +08:00
committed by GitHub
parent a658b9fbe0
commit 1bb607b286
16 changed files with 24 additions and 24 deletions

View File

@@ -98,7 +98,7 @@ func (ini *IniConfig) parseData(dir string, data []byte) (*IniConfigContainer, e
break
}
// It might be a good idea to throw a error on all unknonw errors?
// It might be a good idea to throw an error on all unknonw errors?
if _, ok := err.(*os.PathError); ok {
return nil, err
}

View File

@@ -105,11 +105,11 @@ func (el *esLogger) WriteMsg(lm *logs.LogMsg) error {
return err
}
// Destroy is a empty method
// Destroy is an empty method
func (el *esLogger) Destroy() {
}
// Flush is a empty method
// Flush is an empty method
func (el *esLogger) Flush() {
}