Skip to content

Commit

Permalink
Minimal fixes to JSDoc so gulp docs succeeds (prebid#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmloveland authored and ptomasroos committed Sep 1, 2017
1 parent ec1b5e6 commit 8a3a8bd
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/prebid.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,9 +527,8 @@ $$PREBID_GLOBAL$$.removeCallback = function (/* cbId */) {

/**
* Wrapper to register bidderAdapter externally (adaptermanager.registerBidAdapter())
* @param {[type]} bidderAdaptor [description]
* @param {[type]} bidderCode [description]
* @return {[type]} [description]
* @param {Function} bidderAdaptor [description]
* @param {String} bidderCode [description]
*/
$$PREBID_GLOBAL$$.registerBidAdapter = function (bidderAdaptor, bidderCode) {
utils.logInfo('Invoking $$PREBID_GLOBAL$$.registerBidAdapter', arguments);
Expand All @@ -542,7 +541,7 @@ $$PREBID_GLOBAL$$.registerBidAdapter = function (bidderAdaptor, bidderCode) {

/**
* Wrapper to register analyticsAdapter externally (adaptermanager.registerAnalyticsAdapter())
* @param {[type]} options [description]
* @param {Object} options [description]
*/
$$PREBID_GLOBAL$$.registerAnalyticsAdapter = function (options) {
utils.logInfo('Invoking $$PREBID_GLOBAL$$.registerAnalyticsAdapter', arguments);
Expand All @@ -568,8 +567,8 @@ $$PREBID_GLOBAL$$.bidsAvailableForAdapter = function (bidderCode) {

/**
* Wrapper to bidfactory.createBid()
* @param {[type]} statusCode [description]
* @return {[type]} [description]
* @param {String} statusCode [description]
* @return {Object} bidResponse [description]
*/
$$PREBID_GLOBAL$$.createBid = function (statusCode) {
utils.logInfo('Invoking $$PREBID_GLOBAL$$.createBid', arguments);
Expand All @@ -578,8 +577,8 @@ $$PREBID_GLOBAL$$.createBid = function (statusCode) {

/**
* Wrapper to bidmanager.addBidResponse
* @param {[type]} adUnitCode [description]
* @param {[type]} bid [description]
* @param {String} adUnitCode [description]
* @param {Object} bid [description]
*
* @deprecated This function will be removed in Prebid 1.0
* Each bidder will be passed a reference to addBidResponse function in callBids as an argument.
Expand All @@ -593,9 +592,8 @@ $$PREBID_GLOBAL$$.addBidResponse = function (adUnitCode, bid) {

/**
* Wrapper to adloader.loadScript
* @param {[type]} tagSrc [description]
* @param {String} tagSrc [description]
* @param {Function} callback [description]
* @return {[type]} [description]
*/
$$PREBID_GLOBAL$$.loadScript = function (tagSrc, callback, useCache) {
utils.logInfo('Invoking $$PREBID_GLOBAL$$.loadScript', arguments);
Expand Down

0 comments on commit 8a3a8bd

Please sign in to comment.