[skip ci]Fix trace comment type (#9362)

Signed-off-by: godchen0212 <qingxiang.chen@zilliz.com>
This commit is contained in:
godchen 2021-10-06 23:28:06 +08:00 committed by GitHub
parent b0b3a5c137
commit 0ebc9e2064
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,7 +204,7 @@ func (ppRW PropertiesReaderWriter) Set(key, val string) {
ppRW.PpMap[key] = val
}
// ForeachKey iters each key value of PpMap.
// ForeachKey iterates each key value of PpMap.
func (ppRW PropertiesReaderWriter) ForeachKey(handler func(key, val string) error) error {
for k, val := range ppRW.PpMap {
if err := handler(k, val); err != nil {