From 6c947b79f3a8f5276ab72d41369641b3526a345e Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Thu, 17 Jul 2025 14:59:48 +0200 Subject: [PATCH] chore: enable syntax highlighting for step 5 in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 819025b2a..359aee055 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ Create a the request object. For example, for a request to the `/payments` endpo Use the API object's method to make the request. For example, to make a request to the `/payments` endpoint using the `CheckoutAPI` object: -``` +``` javascript checkoutApi.PaymentsApi.payments(paymentRequest) .then(paymentResponse => console.log(paymentResponse.pspReference)) .catch(error => console.log(error));