diff --git a/README.md b/README.md index 18c1669..e7f1477 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ let product = CBProduct(product: SKProduct()) print(result.chargeID ?? "") print(result.invoiceID ?? "") case .failure(let failure): - //Hanler error here + // Handle error here } } ``` @@ -288,7 +288,7 @@ CBPurchase.shared.validateReceipt(product,customer: nil) { result in print(result.status ) // Clear persisted product details once the validation succeeds. case .failure(let error): - print("error",error.localizedDescription) + print("error", error.localizedDescription) // Retry based on the error } } @@ -302,7 +302,7 @@ CBPurchase.shared.validateReceiptForNonSubscriptions(product,type,customer: nil) case .success(let result): // Clear persisted product details once the validation succeeds. case .failure(let error): - // Retry based on the error + // Retry based on the error } } ```