From 0aa25e2b6c735ccc228e56429066a8c1b6a606f6 Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Tue, 30 Apr 2019 18:14:31 -0700 Subject: [PATCH] Use struct tags in plugin tutorials --- docs/INPUTS.md | 2 +- docs/OUTPUTS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INPUTS.md b/docs/INPUTS.md index 32eb9b9f5..2f4cce3b6 100644 --- a/docs/INPUTS.md +++ b/docs/INPUTS.md @@ -38,7 +38,7 @@ import ( ) type Simple struct { - Ok bool + Ok bool `toml:"ok"` } func (s *Simple) Description() string { diff --git a/docs/OUTPUTS.md b/docs/OUTPUTS.md index 306b9ea6f..8bba4687e 100644 --- a/docs/OUTPUTS.md +++ b/docs/OUTPUTS.md @@ -30,7 +30,7 @@ import ( ) type Simple struct { - Ok bool + Ok bool `toml:"ok"` } func (s *Simple) Description() string {