aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJake Sandler2020-09-25 10:48:26 -0400
committerGitHub2020-09-25 10:48:26 -0400
commit8003d0724cf86fcf8eb58b8d84f17a9af318a90e (patch)
tree0e2f1eca6f6621b7307388b91edb5fdde1f4a78e /README.md
parent1f43c2da8648de9cd28db903a35289c87a7dec1d (diff)
parent631f0d8b2fcc3427d8c8765883a23f6bcd61cfd4 (diff)
downloadpdf_form-8003d0724cf86fcf8eb58b8d84f17a9af318a90e.tar.bz2
Merge pull request #5 from Emulator000/required-readonly-improvements
Various improvements and added ability to read "readonly" and "required" fields flags
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index b41dd96..02b1474 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ A library to programatically identify and fill out PDF forms
## Example Code
* Read a PDF and discover the form fields
-```
+```rust
extern crate pdf_form;
use pdf_form::{Form, FieldType};
@@ -18,7 +18,7 @@ for type in field_types {
```
* Write to the form fields
-```
+```rust
extern crate pdf_form;
use pdf_form::{Form, FieldState};