From 83f63e773b4dd5516af63ba8d7278e21f96f2062 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 11 Nov 2016 21:44:09 -0500 Subject: Adjust some names of test functions to conform with Go's naming conventions --- fpdf_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpdf_test.go') diff --git a/fpdf_test.go b/fpdf_test.go index 9f99568..09346ff 100644 --- a/fpdf_test.go +++ b/fpdf_test.go @@ -1764,7 +1764,7 @@ func ExampleFpdf_AddFontFromBytes() { } // This example demonstrate Clipped table cells -func ExampleFpdf_ClippedTableCells() { +func ExampleFpdf_ClipRect() { marginCell := 2. // margin of top/bottom of cell pdf := gofpdf.New("P", "mm", "A4", "") pdf.SetFont("Arial", "", 12) @@ -1806,8 +1806,8 @@ func ExampleFpdf_ClippedTableCells() { // Successfully generated pdf/Fpdf_ClippedTableCells.pdf } -// This example demonstrate Wrapped table cells -func ExampleFpdf_WrappedTableCells() { +// This example demonstrate wrapped table cells +func ExampleFpdf_Rect() { marginCell := 2. // margin of top/bottom of cell pdf := gofpdf.New("P", "mm", "A4", "") pdf.SetFont("Arial", "", 12) -- cgit v1.2.1-24-ge1ad