diff options
author | Kurt Jung <kurt.w.jung@code.google.com> | 2014-01-28 15:39:09 -0500 |
---|---|---|
committer | Kurt Jung <kurt.w.jung@code.google.com> | 2014-01-28 15:39:09 -0500 |
commit | 55cf6e36dddf2306d28378592dbf1ceea7455ccb (patch) | |
tree | 546373c89f33c5dd14381ec2180595afcc83aebe | |
parent | 5dd5cb88814c86919e18527229269e5d1bb82dbc (diff) |
Add example reference in documentation.
-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) |