From e1132ecc65af53773c457b0252a83c9c71425c52 Mon Sep 17 00:00:00 2001 From: Ashok Gelal Date: Mon, 30 Sep 2013 22:04:57 -0600 Subject: [PATCH] Fix incorrect JSDoc parameter name. --- src/utils/AppInit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/AppInit.js b/src/utils/AppInit.js index 17e36b83cc3..ebbf5f417ff 100644 --- a/src/utils/AppInit.js +++ b/src/utils/AppInit.js @@ -90,7 +90,7 @@ define(function (require, exports, module) { * Adds a callback for the ready hook. Handlers are called after * htmlReady is done, the initial project is loaded, and all extensions are * loaded. - * @param {function} handler + * @param {function} callback */ function appReady(callback) { _addListener(APP_READY, callback); @@ -99,7 +99,7 @@ define(function (require, exports, module) { /** * Adds a callback for the htmlReady hook. Handlers are called after the * main application html template is rendered. - * @param {function} handler + * @param {function} callback */ function htmlReady(callback) { _addListener(HTML_READY, callback);