summaryrefslogtreecommitdiff
path: root/fpdf.go
diff options
context:
space:
mode:
Diffstat (limited to 'fpdf.go')
-rw-r--r--fpdf.go3
1 files changed, 2 insertions, 1 deletions
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))
}