1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-06 08:16:03 +02:00
This commit is contained in:
Wang 2022-04-14 18:55:30 -07:00 committed by GitHub
parent 1919048c8f
commit 034ba9a0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ func makeMap(e encoder.Encoder, kv api.KVPairs, stripPrefix string) (map[string]
case mapV.Decode(e, v.Value) == nil:
val = mapV
default:
return nil, fmt.Errorf("faild decode value. path: %s, error: %s", pathString, err)
return nil, fmt.Errorf("failed decode value. path: %s, error: %s", pathString, err)
}
}