From 766c3d7fef7507e72e4a80402954bccaf3890f0e Mon Sep 17 00:00:00 2001 From: Steven Kalt Date: Fri, 31 May 2024 10:59:09 -0400 Subject: [PATCH] docs: consistent code blocks around types --- 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