diff options
-rw-r--r-- | svgbasic.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svgbasic.go b/svgbasic.go index 4c58f95..585d9c0 100644 --- a/svgbasic.go +++ b/svgbasic.go @@ -199,7 +199,8 @@ func SvgBasicParse(buf []byte) (sig SvgBasicType, err error) { } // SvgBasicParse parses a simple scalable vector graphics (SVG) file into a -// basic descriptor. See SvgBasicParse for additional comments. +// basic descriptor. See SvgBasicParse for additional comments and tutorial 20 +// for an example of this function. func SvgBasicFileParse(svgFileStr string) (sig SvgBasicType, err error) { var buf []byte buf, err = ioutil.ReadFile(svgFileStr) |