From 2cb917791374c9a798cf71971f54735332b221e2 Mon Sep 17 00:00:00 2001 From: Dmitry Fedotov Date: Sun, 13 Apr 2025 23:00:24 +0300 Subject: [PATCH] fix: typo --- example/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/main.go b/example/main.go index 1abf3c3..1381c5c 100644 --- a/example/main.go +++ b/example/main.go @@ -82,7 +82,7 @@ func main() { m, _ := config.Get("map").Map() // return conf.Map and error if any fmt.Printf("%T, %v\n", m, m) // conf.Map, map[a:1 b:2 c:3] - // key "a" can be interpreted as int + // key "с" can be interpreted as int x, _ := m.Get("c").Int() fmt.Println(x) // prints 3 }