From ac32f6f4268f32b75963ef61e16a9750300a4204 Mon Sep 17 00:00:00 2001 From: Julian Viereck Date: Sun, 9 Oct 2011 13:09:57 +0200 Subject: [PATCH] Fix variable naming --- pdf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdf.js b/pdf.js index dfdada5ff..91f53de92 100644 --- a/pdf.js +++ b/pdf.js @@ -7539,13 +7539,13 @@ var PDFFunction = (function() { var bounds = dict.get('Bounds'); var encode = dict.get('Encode'); - return [CONSTRUCT_STICHED, domain, bounds, encoding, fns]; + return [CONSTRUCT_STICHED, domain, bounds, encode, fns]; }, constructStichedFromIR: function pdfFunctionConstructStichedFromIR(IR) { var domain = IR[1]; var bounds = IR[2]; - var encoding = IR[3]; + var encode = IR[3]; var fnsIR = IR[4]; var fns = [];