summaryrefslogtreecommitdiff
path: root/svgbasic.go
diff options
context:
space:
mode:
authorKurt Jung <kurt.w.jung@code.google.com>2014-01-28 15:39:09 -0500
committerKurt Jung <kurt.w.jung@code.google.com>2014-01-28 15:39:09 -0500
commit55cf6e36dddf2306d28378592dbf1ceea7455ccb (patch)
tree546373c89f33c5dd14381ec2180595afcc83aebe /svgbasic.go
parent5dd5cb88814c86919e18527229269e5d1bb82dbc (diff)
Add example reference in documentation.
Diffstat (limited to 'svgbasic.go')
-rw-r--r--svgbasic.go3
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)