From 4ec49bf8c50a582c0043a653cfab161be58fa3f4 Mon Sep 17 00:00:00 2001 From: Steven Kalt Date: Fri, 31 May 2024 14:59:09 +0000 Subject: [PATCH] backport of commit db28daa33f3613b06354c593fd51965157801f38 --- website/content/docs/plugins/creation/custom-builders.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/plugins/creation/custom-builders.mdx b/website/content/docs/plugins/creation/custom-builders.mdx index efad53acc..fbc303ca9 100644 --- a/website/content/docs/plugins/creation/custom-builders.mdx +++ b/website/content/docs/plugins/creation/custom-builders.mdx @@ -59,7 +59,7 @@ configuration. The exact semantics of the merge are left to the builder author. We recommend that you use the [mapstructure](https://godoc.org/github.com/mitchellh/mapstructure) library to -decode the interface{} into a meaningful structure. Mapstructure will take an +decode the `interface{}` into a meaningful structure. Mapstructure will take an `interface{}` and decode it into an arbitrarily complex struct. If there are any errors, it generates very human friendly errors that can be returned directly from the prepare method. You can find many usage examples of this library within