Merge pull request #4416 from timvandermeij/function-typo

Fixes typo in function.js
This commit is contained in:
Tim van der Meij 2014-03-08 22:41:10 +01:00
commit ca612e51ae

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]);
};
},