From 770b8dae4cf00919e5eafffbd8d58186294b61b5 Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Tue, 5 Nov 2019 08:55:36 -0800 Subject: [PATCH] Fix Decorder doc typo (#494) --- yaml.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaml.go b/yaml.go index de85aa4c..89650e29 100644 --- a/yaml.go +++ b/yaml.go @@ -89,7 +89,7 @@ func UnmarshalStrict(in []byte, out interface{}) (err error) { return unmarshal(in, out, true) } -// A Decorder reads and decodes YAML values from an input stream. +// A Decoder reads and decodes YAML values from an input stream. type Decoder struct { strict bool parser *parser