Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tuespetre committed Jun 3, 2014
2 parents 03286b2 + abe67e6 commit 151ab85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var document = new HtmlToPdfDocument
GlobalSettings = {
ProduceOutline = true,
DocumentTitle = "Pretty Websites",
PaperSize = PaperKinds.A4 // Implicit conversion to PechkinPaperSize
PaperSize = PaperKind.A4, // Implicit conversion to PechkinPaperSize
Margins =
{
All = 1.375,
Expand All @@ -99,7 +99,7 @@ converter.ProgressChanged += OnProgress;
converter.Finished += OnFinished;

// convert document
byte[] result = pechkin.Convert(document);
byte[] result = converter.Convert(document);
```

License
Expand Down

0 comments on commit 151ab85

Please sign in to comment.