From e55ee0393cde9cd49cd41c3872d658de89408440 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Tue, 5 Jun 2018 13:32:39 +0200 Subject: update doc --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b60aeff..b3d925a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -106,14 +106,14 @@ impl PdfObjectDeref for Object { impl Form { /// Takes a reader containing a PDF with a fillable form, analyzes the content, and attempts to - /// identify all of the fields the form has. This is the only way to create a `Form` + /// identify all of the fields the form has. pub fn load_from(reader: R) -> Result { let doc = Document::load_from(reader)?; Self::load_doc(doc) } /// Takes a path to a PDF with a fillable form, analyzes the file, and attempts to identify all - /// of the fields the form has. This is the only way to create a `Form` + /// of the fields the form has. pub fn load>(path: P) -> Result { let doc = Document::load(path)?; Self::load_doc(doc) -- cgit v1.2.3