Fixes typo in function.js

This commit is contained in:
Tim van der Meij 2014-03-08 22:40:19 +01:00
parent df2248d5b9
commit 99b0231343

View File

@ -354,7 +354,7 @@ var PDFFunction = (function PDFFunctionClosure() {
var v2 = rmin + (v - dmin) * (rmax - rmin) / (dmax - dmin);
// call the appropropriate function
// call the appropriate function
return fns[i]([v2]);
};
},