diff options
-rw-r--r-- | LICENSE | 4 | ||||
-rw-r--r-- | doc.go | 3 | ||||
-rw-r--r-- | fpdf_test.go | 2 |
3 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,6 @@ -Copyright (c) 2013-2014 Kurt Jung (Gmail: kurt.w.jung) +Copyright (c) 2013-2015 Kurt Jung (Gmail: kurt.w.jung) + +Portions copyright by the contributors acknowledged in the documentation. Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -80,7 +80,8 @@ The FPDF website is http://www.fpdf.org/. License -gofpdf is copyrighted by Kurt Jung and is released under the MIT License. +gofpdf is released under the MIT License. It is copyrighted by Kurt Jung and +the contributors acknowledged above. Installation diff --git a/fpdf_test.go b/fpdf_test.go index 1f500fc..3872331 100644 --- a/fpdf_test.go +++ b/fpdf_test.go @@ -1537,7 +1537,7 @@ func ExampleFpdf_tutorial32() { x, y := cx+r*math.Cos(dir*a), cy+r*math.Sin(dir*a) pdf.LineTo(x, y) pdf.Text(x, y, strconv.Itoa(i)) - i += 1 + i++ } pdf.ClosePath() } |