Skip to content

Commit 49a5730

Browse files
committed
linting fix
1 parent 936c8ac commit 49a5730

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev-docs/publisher-api-reference/setConfig.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,20 +1408,20 @@ pbjs.setConfig({
14081408

14091409
The Previous Auction Info module enables functionality to collect prior auction data for participating bidders and publishers (This feature is `opt-in`, by default it is disabled). The following requirements must be in place for the module to work:
14101410

1411-
- Publisher's who would like to participate must explicitly configure PBJS to do so:
1411+
* Publisher's who would like to participate must explicitly configure PBJS to do so:
14121412

14131413
```javascript
14141414
pbjs.setConfig({previousAuctionInfo: true})
14151415
```
14161416

1417-
- Only bid adapters who have enabled this feature will be able to utilize it. To do this, a bid adapter must add the following to their bidAdapter.js file:
1417+
* Only bid adapters who have enabled this feature will be able to utilize it. To do this, a bid adapter must add the following to their bidAdapter.js file:
14181418

14191419
```javascript
14201420
import { enablePreviousAuctionInfo } from '../libraries/previousAuctionInfo/previousAuctionInfo.js';
14211421
enablePreviousAuctionInfo({ bidderCode: 'some bidder code' });
14221422
```
14231423

1424-
- Only valid bid requests submitted by bidders who have enabled the Previous Auction Info module will be permitted.
1424+
* Only valid bid requests submitted by bidders who have enabled the Previous Auction Info module will be permitted.
14251425

14261426
If the requirements above are met, the flow for how the module works is as follows:
14271427

0 commit comments

Comments
 (0)