diff --git a/docs/tutorials/follow-received-payments.mdx b/docs/tutorials/follow-received-payments.mdx index 8afdbaeaa..a7ef91b04 100644 --- a/docs/tutorials/follow-received-payments.mdx +++ b/docs/tutorials/follow-received-payments.mdx @@ -53,7 +53,7 @@ Create a new file named `make_account.js` and paste the following text into it: -```javascript +```js var Keypair = require("stellar-base").Keypair; var newAccount = Keypair.random(); diff --git a/docs/tutorials/moneygram-access-integration-guide.mdx b/docs/tutorials/moneygram-access-integration-guide.mdx index fe36d783c..1a477b444 100644 --- a/docs/tutorials/moneygram-access-integration-guide.mdx +++ b/docs/tutorials/moneygram-access-integration-guide.mdx @@ -202,7 +202,7 @@ Below is a simple JavaScript example listening for a postmessage notification. -```javascript +```js webview = window.open(moneygramURL, "webview", "width=500,height=800"); window.addEventListener("message", closeWebView);