Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed May 3, 2022
1 parent 1de535f commit 335b023
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/PurchaseConsumable.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ All purchases go through the `PurchaseAsync` method and you must always `Connect

Consumables are unique and work a bit different on each platform and the `ConsumePurchaseAsync` may need to be called after making the purchase:
* Apple: You must consume the purchase (this finishes the transaction), starting in 5.x and 6.x will not auto do this.
* Android: You must consume before purchasing again, it also acts as a way of acknowledging the transation
* Android: You must consume before purchasing again, it also acts as a way of acknowledging the transaction
* Microsoft: You must consume before purchasing again

### Purchase Item
Expand Down
2 changes: 1 addition & 1 deletion docs/PurchaseSubscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Task<InAppBillingPurchase> PurchaseAsync(string productId, ItemType itemType, II
On Android you must call `FinalizeAndAcknowlegeAsync` within 3 days when a purchase is validated. Please read the [Android documentation on Pending Transactions](https://developer.android.com/google/play/billing/integrate#pending) for more information.


You must also call this on iOS to finalize and acknowlege the transation.
You must also call this on iOS to finalize and acknowlege the transaction.

Example:
```csharp
Expand Down

0 comments on commit 335b023

Please sign in to comment.