From 375bcc5495c07faf1373eefc9e368acab504788e Mon Sep 17 00:00:00 2001 From: Charles Banning Date: Tue, 21 Feb 2017 10:47:37 -0700 Subject: [PATCH] more doc cleanup --- unknowntags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unknowntags.go b/unknowntags.go index 9e0bc26..cb52881 100644 --- a/unknowntags.go +++ b/unknowntags.go @@ -77,7 +77,7 @@ import ( // Example - print out XML data tags and values that will not be decoded to the struct "myStruct": // import "github.com/clbanning/mxj" // ... -// tags, m, root, err := UnknownXMLTagsMap(xmlData, myStruct) +// tags, root, m, err := UnknownXMLTagsMap(xmlData, myStruct) // if err != nil { // // handle error // }