From 31c1da203bd00ff9e9ba602257bab2b4282ca945 Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Mon, 12 Oct 2015 10:34:43 -0400 Subject: Add reference PDFs for comparison purposes. Document comparison of example documents. --- fpdf.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpdf.go') diff --git a/fpdf.go b/fpdf.go index 74489de..bc23674 100644 --- a/fpdf.go +++ b/fpdf.go @@ -3003,7 +3003,7 @@ func SetDefaultCatalogSort(flag bool) { // SetCatalogSort sets a flag that will be used, if true, to consistently order // the document's internal resource catalogs. This method is typically only -// used for test purposes. +// used for test purposes to facilitate PDF comparison. func (f *Fpdf) SetCatalogSort(flag bool) { f.catalogSort = flag } @@ -3017,8 +3017,8 @@ func SetDefaultCreationDate(tm time.Time) { // SetCreationDate fixes the document's internal CreationDate value. By // default, the time when the document is generated is used for this value. -// This method is typically only used for testing purposes. Specify a -// zero-value time to revert to the default behavior. +// This method is typically only used for testing purposes to facilitate PDF +// comparsion. Specify a zero-value time to revert to the default behavior. func (f *Fpdf) SetCreationDate(tm time.Time) { f.creationDate = tm } -- cgit v1.2.1-24-ge1ad