diff --git a/pdata/pcommon/map.go b/pdata/pcommon/map.go index 2b63ef698cc0..9b233b8e0111 100644 --- a/pdata/pcommon/map.go +++ b/pdata/pcommon/map.go @@ -219,7 +219,7 @@ func (m Map) Len() int { // ... // }) // -// Deprecated: Use the iterator returned by All instead. +// Deprecated: [v0.120.0] use the iterator returned by All instead. func (m Map) Range(f func(k string, v Value) bool) { for i := range *m.getOrig() { kv := &(*m.getOrig())[i]