fix(blogo,metadata): Map being used instead of Metadata in Immutable argument

This commit is contained in:
Guz
2025-01-24 16:26:33 -03:00
parent 5008f9d6ad
commit 81998f4baf

View File

@@ -220,7 +220,7 @@ func (m joined) Delete(key string) error {
type immutable struct{ Metadata }
func Immutable(m Map) Metadata {
func Immutable(m Metadata) Metadata {
return &immutable{m}
}