diff options
Diffstat (limited to 'docshelper/docs.go')
-rw-r--r-- | docshelper/docs.go | 4 |
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 } |