diff options
author | Kurt <kurt.w.jung@gmail.com> | 2019-05-06 07:43:54 -0400 |
---|---|---|
committer | Kurt <kurt.w.jung@gmail.com> | 2019-05-06 07:43:54 -0400 |
commit | 30a37b5fca264d688cf7a87cf1f9d0b627d45202 (patch) | |
tree | 798af7d57900cc863d77f39248b45750d24ae683 | |
parent | 89018d7e4321673e3c73bb7e483dde22151c0097 (diff) |
Adjust method comments to coform with Go documentation standards
-rw-r--r-- | fpdf.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -618,12 +618,12 @@ func (f *Fpdf) AliasNbPages(aliasStr string) { f.aliasNbPagesStr = aliasStr } -// enable right to left mode +// RTL enables right-to-left mode func (f *Fpdf) RTL() { f.isRTL = true } -// disable right to left mode +// LTR disables right-to-left mode func (f *Fpdf) LTR() { f.isRTL = false } |