From 7e2d632b0ad09a8320bd7b57b69b39cf08e03576 Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Mon, 26 Aug 2013 06:03:43 -0400 Subject: Clarification to InitType documentation. --- def.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'def.go') diff --git a/def.go b/def.go index 60ab58c..d877f9c 100644 --- a/def.go +++ b/def.go @@ -70,8 +70,8 @@ type fontFileType struct { type linkType struct { x, y, wd, ht float64 - link int // Auto-generated link ID or... - linkStr string // ...application-provided link string + link int // Auto-generated internal link ID or... + linkStr string // ...application-provided external link string } type intLinkType struct { @@ -82,7 +82,8 @@ type intLinkType struct { // InitType is used with NewCustom() to customize an Fpdf instance. // OrientationStr, UnitStr, SizeStr and FontDirStr correspond to the arguments // accepted by New(). If the Wd and Ht fields of Size are each greater than -// zero, Size will be used to set the default page size rather than SizeStr. +// zero, Size will be used to set the default page size rather than SizeStr. Wd +// and Ht are specified in the units of measure indicated by UnitStr. type InitType struct { OrientationStr string UnitStr string -- cgit v1.2.1-24-ge1ad