summaryrefslogtreecommitdiffstats
path: root/docshelper
diff options
context:
space:
mode:
Diffstat (limited to 'docshelper')
-rw-r--r--docshelper/docs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/docshelper/docs.go b/docshelper/docs.go
index 999e14d7d..1e1594120 100644
--- a/docshelper/docs.go
+++ b/docshelper/docs.go
@@ -17,7 +17,7 @@ package docshelper
type (
DocProviderFunc = func() DocProvider
- DocProvider map[string]map[string]interface{}
+ DocProvider map[string]map[string]any
)
var docProviderFuncs []DocProviderFunc
@@ -44,7 +44,7 @@ func GetDocProvider() DocProvider {
}
// Shallow merge
-func merge(dst, src map[string]interface{}) {
+func merge(dst, src map[string]any) {
for k, v := range src {
dst[k] = v
}