JSDoc cleanup

This commit is contained in:
crandmck 2014-06-09 15:50:04 -07:00
parent cea2d30928
commit 6af69e322a
1 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ var PushNotificationSettingSchema = {
gcm: GcmSettingsSchema
};
/**
/*!
* Data model for Application
*/
var ApplicationSchema = {
@ -133,10 +133,10 @@ Application.beforeCreate = function (next) {
/**
* Register a new application
* @param owner Owner's user id
* @param name Name of the application
* @param options Other options
* @param cb Callback function
* @param {String} owner Owner's user ID.
* @param {String} name Name of the application
* @param {Object} options Other options
* @param {Function} callback Callback function
*/
Application.register = function (owner, name, options, cb) {
assert(owner, 'owner is required');