diff options
author | Kurt <kurt.w.jung@gmail.com> | 2019-09-07 13:01:30 -0400 |
---|---|---|
committer | Kurt <kurt.w.jung@gmail.com> | 2019-09-07 13:01:30 -0400 |
commit | e123b55aba2106cced7941e31391fff7e59d200d (patch) | |
tree | 3330fc4156a823b8280c07e90e2c348a4b47c67d /ttfparser_test.go | |
parent | 55163912400e026280068ffb69bef8b0b3c42778 (diff) |
Adjust various import paths, rename example function
Diffstat (limited to 'ttfparser_test.go')
-rw-r--r-- | ttfparser_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ttfparser_test.go b/ttfparser_test.go index b157d98..3286db2 100644 --- a/ttfparser_test.go +++ b/ttfparser_test.go @@ -19,8 +19,9 @@ package gofpdf_test import ( "bytes" "fmt" - "gofpdf" - "gofpdf/internal/example" + + "github.com/jung-kurt/gofpdf" + "github.com/jung-kurt/gofpdf/internal/example" ) func ExampleTtfParse() { |