From 567bef933d5649777a8b39772ad57dc9ddaba8d8 Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 21 Feb 2019 11:32:27 -0500 Subject: Acknowledge word spacing author --- fpdf.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'fpdf.go') diff --git a/fpdf.go b/fpdf.go index 8376f9c..d6fc123 100644 --- a/fpdf.go +++ b/fpdf.go @@ -1897,7 +1897,8 @@ func (f *Fpdf) Text(x, y float64, txtStr string) { f.out(s) } -// SetWordSpacing sets spacing between words of following text +// SetWordSpacing sets spacing between words of following text. See the +// WriteAligned() example for a demonstration of its use. func (f *Fpdf) SetWordSpacing(space float64) { f.out(sprintf("%.5f Tw", space*f.k)) } -- cgit v1.2.1-24-ge1ad