From ac3e26b1a6ddfbb4508e359f6924d7b2f1ea721d Mon Sep 17 00:00:00 2001 From: SehyunRyanPark Date: Thu, 30 Nov 2017 09:50:00 +0900 Subject: [PATCH] Update index.md adding the appropriate comma(,) in order to make the sentence more understandable to the readers. --- docs/contents/examples/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contents/examples/index.md b/docs/contents/examples/index.md index c442652ea..5967b24f6 100644 --- a/docs/contents/examples/index.md +++ b/docs/contents/examples/index.md @@ -35,7 +35,7 @@ pdf.getPage(1).then(function(page) { ``` ### Rendering the Page -Each PDF page has its own viewport which defines the size in pixels(72DPI) and initial rotation. By default the viewport is scaled to the original size of the PDF, but this can be changed by modifying the viewport. When the viewport is created an initial transformation matrix will also be created that takes into account the desired scale, rotation, and it transforms the coordinate system (the 0,0 point in PDF documents the bottom-left whereas canvas 0,0 is top-left). +Each PDF page has its own viewport which defines the size in pixels(72DPI) and initial rotation. By default the viewport is scaled to the original size of the PDF, but this can be changed by modifying the viewport. When the viewport is created, an initial transformation matrix will also be created that takes into account the desired scale, rotation, and it transforms the coordinate system (the 0,0 point in PDF documents the bottom-left whereas canvas 0,0 is top-left). ```js var scale = 1.5;