1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Fix typos

This commit is contained in:
Wojciech Maj 2018-04-01 23:20:41 +02:00
parent 2f63ca0705
commit ea2850e9a7
16 changed files with 30 additions and 30 deletions

View file

@ -168,7 +168,7 @@ function postprocessNode(ctx, node) {
if (node.callee.type === 'MemberExpression' &&
isPDFJSPreprocessor(node.callee.object) &&
node.callee.property.type === 'Identifier') {
// PDFJSDev.xxxx(arg1, arg2, ...) => tranform
// PDFJSDev.xxxx(arg1, arg2, ...) => transform
var action = node.callee.property.name;
return handlePreprocessorAction(ctx, action,
node.arguments, node.loc);