diff --git a/user/pages/03.commerce2/02.developer-guide/05.payments/06.create-payment-gateway/03.off-site-gateways/03.return-from-payment-provider/docs.md b/user/pages/03.commerce2/02.developer-guide/05.payments/06.create-payment-gateway/03.off-site-gateways/03.return-from-payment-provider/docs.md index b7691238..e8438f52 100644 --- a/user/pages/03.commerce2/02.developer-guide/05.payments/06.create-payment-gateway/03.off-site-gateways/03.return-from-payment-provider/docs.md +++ b/user/pages/03.commerce2/02.developer-guide/05.payments/06.create-payment-gateway/03.off-site-gateways/03.return-from-payment-provider/docs.md @@ -6,7 +6,7 @@ taxonomy: After a customer provides his payment details to the payment provider for your off-site gateway, the payment provider redirects the customer back to your site. If the customer declines to provide his payment details and cancels the payment at the payment provider, he will be redirected back to the cancel url. Otherwise, he will be redirected back to the return url so that you can validate that the payment actually succeeded and create the Drupal Commerce payment for the customer's order. -Off-site payment gateways implement the `OffsitePaymentGatewayInterface`, which defines the methods used to handle the return from the payment provider: `onCancel()`, and `onReturn()`. This documentation page describes how to implement these methods, which is just one aspect of creating an off-site payment gateway. See the [Off-site payment gateways docmentation](../docs.md) for a full overview. +Off-site payment gateways implement the `OffsitePaymentGatewayInterface`, which defines the methods used to handle the return from the payment provider: `onCancel()`, and `onReturn()`. This documentation page describes how to implement these methods, which is just one aspect of creating an off-site payment gateway. See the [Off-site payment gateways documentation](../docs.md) for a full overview. Note that if your payment provider supports asynchronous notifications (IPNs), then creating the payment in `onNotify()` is preferred, since it is guaranteed to be called even if the customer does not return to the site. Also, some off-site payment gateways do not need to implement the `onReturn()` method at all. Instead, they just handle payment creation and processing in the `onNotify()` method. See the [Handling an IPN documentation](../04.handling-ipn) for more information.