summaryrefslogtreecommitdiff
path: root/fpdf.go
diff options
context:
space:
mode:
authorKurt Jung <kurt.w.jung@gmail.com>2015-07-04 13:25:09 -0400
committerKurt Jung <kurt.w.jung@gmail.com>2015-07-04 13:25:09 -0400
commit4cdc6183e275dfb2da40b965477900081b8f905e (patch)
tree47c33477263b216dd40822507dd4962e264d7cae /fpdf.go
parent1d655638f9c01bdf29aaee195a6628e79f963cfb (diff)
Small adjustment to documentation
Diffstat (limited to 'fpdf.go')
-rw-r--r--fpdf.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/fpdf.go b/fpdf.go
index e516931..f4d7bdc 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -789,11 +789,11 @@ func (f *Fpdf) SetLineCapStyle(styleStr string) {
}
// SetDashPattern sets the dash pattern that is used to draw lines. The
-// dashArray elements are numbers, in units established in New(), that specify
-// the lengths of alternating dashes and gaps. The dash phase specifies the
-// distance into the dash pattern at which to start the dash. The dash pattern
-// is retained from page to page. Call this method with an empty array to
-// restore solid line drawing.
+// dashArray elements are numbers that specify the lengths, in units
+// established in New(), of alternating dashes and gaps. The dash phase
+// specifies the distance into the dash pattern at which to start the dash. The
+// dash pattern is retained from page to page. Call this method with an empty
+// array to restore solid line drawing.
//
// See tutorial 28 for an example of this function.
func (f *Fpdf) SetDashPattern(dashArray []float64, dashPhase float64) {