Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5389 from ashokgelal/fix_docs
Browse files Browse the repository at this point in the history
Fix incorrect JSDoc parameter name.
  • Loading branch information
peterflynn committed Oct 1, 2013
2 parents 419b325 + e1132ec commit 3f1f4b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/AppInit.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 3f1f4b4

Please sign in to comment.