aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
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};