From 91627419b0b3b7945dacd138369a2411a73da2b7 Mon Sep 17 00:00:00 2001 From: cb-anurags <82492633+cb-anurags@users.noreply.github.com> Date: Sat, 29 Jul 2023 16:25:19 +0530 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 } } ```