From 871776ca84886eb1722b0aad1a5704e1a79f3d3d Mon Sep 17 00:00:00 2001 From: David Allen Date: Wed, 3 Jul 2024 12:55:22 -0600 Subject: [PATCH] Fixed plugin code example formatting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7eb79d..54b511a 100644 --- a/README.md +++ b/README.md @@ -100,8 +100,8 @@ func (g *MyGenerator) Generate(config *configurator.Config, opts ...util.Option) // apply the substitutions to Jinja template and return output as byte array return generator.ApplyTemplate(path, generator.Mappings{ "plugin_name": g.GetName(), - "plugin_version": g.GetVersion(), - "plugin_description": g.GetDescription(), + "plugin_version": g.GetVersion(), + "plugin_description": g.GetDescription(), "output": output, }) }