Skip to content

Commit

Permalink
fix typos in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
apexdodge authored Jul 14, 2021
1 parent 550a6b6 commit 05ea971
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ To use the merge endpoint, supply a list of urls to existing PDFs. The engine wi
merge_result = a2p_client.PdfSharp.merge(links_to_pdfs, inline=True, file_name='test.pdf')

**Add bookmarks to existing PDF**
url = 'https://link-to-pdf

url = 'https://link-to-pdf'
bookmarks = [
{ 'Page': 0, 'Title': 'Introduction' },
{ 'Page': 1, 'Title': 'Second page' }
Expand All @@ -215,7 +216,7 @@ To use the merge endpoint, supply a list of urls to existing PDFs. The engine wi

**Add password to existing PDF**

url = 'https://link-to-pdf
url = 'https://link-to-pdf'
password = 'hello'
response = a2p.PdfSharp.add_password(url, password)

Expand Down

0 comments on commit 05ea971

Please sign in to comment.