Fix jsdoc
This commit is contained in:
parent
176f96e242
commit
ed59cb2483
3
index.js
3
index.js
|
@ -112,8 +112,9 @@ var addInstructionsToBrowserify = require('./lib/bundler');
|
|||
* @property {Array.<String>} [bootScripts] List of script files to execute
|
||||
* on boot.
|
||||
* @end
|
||||
* @param {Function} [callback] Callback function.
|
||||
*
|
||||
* @header boot(app, [options])
|
||||
* @header boot(app, [options], [callback])
|
||||
*/
|
||||
|
||||
exports = module.exports = function bootLoopBackApp(app, options, callback) {
|
||||
|
|
|
@ -7,8 +7,9 @@ var async = require('async');
|
|||
/**
|
||||
* Execute bootstrap instructions gathered by `boot.compile`.
|
||||
*
|
||||
* @options {Object} app The loopback app to boot.
|
||||
* @param {Object} app The loopback app to boot.
|
||||
* @options {Object} instructions Boot instructions.
|
||||
* @param {Function} [callback] Callback function.
|
||||
*
|
||||
* @header boot.execute(instructions)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue