Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
wrap a line that exceeds 100 characters.
  • Loading branch information
qingxinwu committed Jan 31, 2023
1 parent b1a2662 commit f6101a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions FLEDGE_extended_PA_reporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ be added to various aggregation keys.
Similar to the above example, sometimes, the key that we want to aggregate over may depend
on the outcome of an auction. To solve this use case we provide an object called `signalBucket`.
The final bucket id of the bucket will depend on the outcome of the auction. The following
example allows the buyer to keep track of how many times an ad was not shown because the buyer provided an invalid bid.
example allows the buyer to keep track of how many times an ad was not shown because the buyer
provided an invalid bid.


```
Expand All @@ -162,7 +163,7 @@ function generateBid(...) {
return "not a valid bid";
}
```
If the bid is rejected for being an invalid bid, this would result in a contribution being generated:
If the bid is rejected for invalid bid, this would result in a contribution being generated:

```
bucket: 256n // 255n + 1n (1n is the value associated with invalid bid, see bidRejectReason below)
Expand Down

0 comments on commit f6101a0

Please sign in to comment.