diff options
author | Hakim El Hattab | 2016-01-04 09:30:36 +0100 |
---|---|---|
committer | Hakim El Hattab | 2016-01-04 09:30:36 +0100 |
commit | c2298865cb4929a6890b5dde8ca23a60bac71a43 (patch) | |
tree | 28fcf7c7ea79aac243a25dfd000bf861477c6a49 | |
parent | 18b644cf8f1ae04b16f962655b99cb786f08ef2c (diff) | |
parent | 5da75aef01a16f694632c377d47d6d0518fbb8c5 (diff) |
Merge pull request #1467 from ismith/spelling_fix
Fix spelling error in print-pdf plugin
-rw-r--r-- | plugin/print-pdf/print-pdf.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/print-pdf/print-pdf.js b/plugin/print-pdf/print-pdf.js index 86dc4df..38a698d 100644 --- a/plugin/print-pdf/print-pdf.js +++ b/plugin/print-pdf/print-pdf.js @@ -40,7 +40,7 @@ console.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.pap page.open( inputFile, function( status ) { window.setTimeout( function() { - console.log( 'Printed succesfully' ); + console.log( 'Printed successfully' ); page.render( outputFile ); phantom.exit(); }, 1000 ); |