From c90f0c43df2c1df24f279bc31b2c57d0a1a9bb1c Mon Sep 17 00:00:00 2001 From: Cian Buckley Date: Mon, 2 Oct 2023 09:42:53 +0200 Subject: [PATCH] update readme --- README.md | 2 +- Sources/ShopifyCheckout/CheckoutDelegate.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0bd7aa38..47f86f08 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ extension MyViewController: ShopifyCheckoutDelegate { } func checkoutDidClickLink(url: URL) { - // Called when the buyer clicked a link e.g mail address or telephone number via `mailto:` or `tel:` or `http` links. + // Called when the buyer clicked a link e.g mail address or telephone number via `mailto:` or `tel:` or `http` links directed outside the application. } } ``` diff --git a/Sources/ShopifyCheckout/CheckoutDelegate.swift b/Sources/ShopifyCheckout/CheckoutDelegate.swift index 4875616e..21b86cf4 100644 --- a/Sources/ShopifyCheckout/CheckoutDelegate.swift +++ b/Sources/ShopifyCheckout/CheckoutDelegate.swift @@ -36,7 +36,7 @@ public protocol CheckoutDelegate: AnyObject { func checkoutDidFail(errors: [CheckoutError]) /// Tells te delegate that the buyer clicked a link - /// This may include email address or telephone number via `mailto:` or `tel:`. + /// This includes email address or telephone number via `mailto:` or `tel:` or `http` links directed outside the application. func checkoutDidClickLink(url: URL) }