Skip to content

Commit bf8b5f4

Browse files
committed
description
1 parent 1ec9aff commit bf8b5f4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A simple Go library which enables reading PDF files.
44

5-
This repository contains merged code from https://github.com/rsc/pdf and https://github.com/ledongthuc/pdf and https://github.com/dslipak/pdf.
5+
This repository contains merged code from https://github.com/rsc/pdf and https://github.com/ledongthuc/pdf and https://github.com/dslipak/pdf.
66
Added bugfixs and stabilize error handling.
77

88
Features
@@ -38,6 +38,9 @@ import (
3838

3939
func main() {
4040

41+
testFile := "./testdata/story_Word2019-2312-1712620132_SaveAs-Standard-PDFA__pdf17_trailer.pdf"
42+
43+
// open file
4144
fmt.Println(". open testFile = " + testFile)
4245
f, err := Open(testFile)
4346
if err != nil {
@@ -90,7 +93,7 @@ func main() {
9093
fmt.Println(verdicts[i])
9194
}
9295

93-
// close
96+
// close file
9497
f.Close()
9598
}
9699
```

0 commit comments

Comments
 (0)