Correct @param type

This commit is contained in:
Tom Payne
2013-09-03 15:57:03 +02:00
parent 1db4750c72
commit 9c5c252ae5

View File

@@ -417,7 +417,7 @@ libtess.GluTesselator.prototype.gluTessNormal = function(x, y, z) {
* Specify callbacks. See README. A null or undefined opt_fn removes current callback. * Specify callbacks. See README. A null or undefined opt_fn removes current callback.
* *
* @param {libtess.gluEnum} which [description]. * @param {libtess.gluEnum} which [description].
* @param {?function()=} opt_fn [description]. * @param {?Function=} opt_fn [description].
*/ */
libtess.GluTesselator.prototype.gluTessCallback = function(which, opt_fn) { libtess.GluTesselator.prototype.gluTessCallback = function(which, opt_fn) {
var fn = !opt_fn ? null : opt_fn; var fn = !opt_fn ? null : opt_fn;