diff options
author | Kurt Jung <kurt.w.jung@gmail.com> | 2015-07-04 13:25:09 -0400 |
---|---|---|
committer | Kurt Jung <kurt.w.jung@gmail.com> | 2015-07-04 13:25:09 -0400 |
commit | 4cdc6183e275dfb2da40b965477900081b8f905e (patch) | |
tree | 47c33477263b216dd40822507dd4962e264d7cae | |
parent | 1d655638f9c01bdf29aaee195a6628e79f963cfb (diff) |
Small adjustment to documentation
-rw-r--r-- | fpdf.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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) { |