This commit is contained in:
anqiansong
2023-03-06 18:44:12 +08:00
committed by Kevin Wan
parent 4620924105
commit d40000d4b9

View File

@@ -34,7 +34,7 @@ type (
recursiveValuer node
)
// Value gets the value assciated with the given key from mv.
// Value gets the value associated with the given key from mv.
func (mv mapValuer) Value(key string) (any, bool) {
v, ok := mv[key]
return v, ok