From d40000d4b9c531f60885e928611f7052c2d6fa15 Mon Sep 17 00:00:00 2001 From: anqiansong Date: Mon, 6 Mar 2023 18:44:12 +0800 Subject: [PATCH] fix typo --- core/mapping/valuer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/mapping/valuer.go b/core/mapping/valuer.go index 37f0b3bd..206b1b13 100644 --- a/core/mapping/valuer.go +++ b/core/mapping/valuer.go @@ -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