From a1066f20797e7cacc7b0c9b9bc410cb40733816a Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Tue, 28 Oct 2014 07:53:39 -0400 Subject: Typo --- fpdf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpdf.go b/fpdf.go index 68f0e75..be2d5c0 100644 --- a/fpdf.go +++ b/fpdf.go @@ -943,7 +943,7 @@ func (f *Fpdf) CurveCubic(x0, y0, cx0, cy0, x1, y1, cx1, cy1 float64, styleStr s // This routine performs the same function as CurveCubic() but uses standard // argument order. // -// See tutorials 11 for examples of this function. +// See tutorial 11 for examples of this function. func (f *Fpdf) CurveBezierCubic(x0, y0, cx0, cy0, cx1, cy1, x1, y1 float64, styleStr string) { f.point(x0, y0) f.outf("%.5f %.5f %.5f %.5f %.5f %.5f c %s", cx0*f.k, (f.h-cy0)*f.k, -- cgit v1.2.1-24-ge1ad