diff options
author | Kurt <kurt.w.jung@gmail.com> | 2018-03-19 13:00:48 -0400 |
---|---|---|
committer | Kurt <kurt.w.jung@gmail.com> | 2018-03-19 13:00:48 -0400 |
commit | a5d7759a7bc697ddb0a744ab67c1daa4a87e4c8b (patch) | |
tree | 9178c329ad4302513bcd953fcd6f64a5159e91e6 | |
parent | c4bf431472e0d2bac050f5a2c5ade09a50d55f2c (diff) |
Fix typo, mention charting facility in home page
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | doc.go | 2 | ||||
-rw-r--r-- | grid.go | 2 |
3 files changed, 4 insertions, 1 deletions
@@ -27,6 +27,7 @@ text, drawing and images. * Layers * Templates * Barcodes +* Charting facility gofpdf has no dependencies other than the Go standard library. All tests pass on Linux, Mac and Windows platforms. @@ -52,6 +52,8 @@ Features • Barcodes +• Charting facility + gofpdf has no dependencies other than the Go standard library. All tests pass on Linux, Mac and Windows platforms. @@ -353,7 +353,7 @@ func (g GridType) Grid(pdf *Fpdf) { } // Plot plots a series of count line segments from xMin to xMax. It repeatedly -// calls fnc(x) to retreive the y value associate with x. The currently +// calls fnc(x) to retrieve the y value associate with x. The currently // selected line drawing attributes are used. func (g GridType) Plot(pdf *Fpdf, xMin, xMax float64, count int, fnc func(x float64) (y float64)) { if count > 0 { |