From 56ac02309811cdc31c2ac8b733d3c3c18179024f Mon Sep 17 00:00:00 2001 From: Rome Reginelli Date: Tue, 7 Oct 2025 14:49:48 -0700 Subject: [PATCH] Apply suggestions from @maria-robobug review Co-authored-by: Maria Shodunke --- _code-samples/build-a-desktop-wallet/js/0-hello/index.js | 2 +- _code-samples/build-a-desktop-wallet/js/1-ledger-index/index.js | 2 +- _code-samples/build-a-desktop-wallet/js/2-async/index.js | 2 +- .../build-apps/build-a-desktop-wallet-in-javascript.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_code-samples/build-a-desktop-wallet/js/0-hello/index.js b/_code-samples/build-a-desktop-wallet/js/0-hello/index.js index d4003f48c8..06e0fba0c5 100644 --- a/_code-samples/build-a-desktop-wallet/js/0-hello/index.js +++ b/_code-samples/build-a-desktop-wallet/js/0-hello/index.js @@ -5,7 +5,7 @@ const path = require('path') /** * Main function: create application window, preload the code to communicate * between the renderer Process and the main Process, load a layout, - * and perform the main logic + * and perform the main logic. */ const createWindow = () => { // Create the application window diff --git a/_code-samples/build-a-desktop-wallet/js/1-ledger-index/index.js b/_code-samples/build-a-desktop-wallet/js/1-ledger-index/index.js index fae39a0465..3a3c41acfc 100644 --- a/_code-samples/build-a-desktop-wallet/js/1-ledger-index/index.js +++ b/_code-samples/build-a-desktop-wallet/js/1-ledger-index/index.js @@ -28,7 +28,7 @@ const getValidatedLedgerIndex = async () => { /** * Main function: create application window, preload the code to communicate * between the renderer Process and the main Process, load a layout, - * and perform the main logic + * and perform the main logic. */ const createWindow = () => { // Create the application window diff --git a/_code-samples/build-a-desktop-wallet/js/2-async/index.js b/_code-samples/build-a-desktop-wallet/js/2-async/index.js index 1431f9cf0e..0c5d00bf6a 100644 --- a/_code-samples/build-a-desktop-wallet/js/2-async/index.js +++ b/_code-samples/build-a-desktop-wallet/js/2-async/index.js @@ -27,7 +27,7 @@ const createWindow = () => { // Step 2 changes - main whenReady function - start /** * Create an XRPL client, subscribe to 'ledger' events, and broadcast those by - * dispatching an 'update-ledger-data' event to the frontend + * dispatching an 'update-ledger-data' event to the frontend. * * @returns {Promise} */ diff --git a/docs/tutorials/javascript/build-apps/build-a-desktop-wallet-in-javascript.md b/docs/tutorials/javascript/build-apps/build-a-desktop-wallet-in-javascript.md index 834ce0cfb3..8be7d40200 100644 --- a/docs/tutorials/javascript/build-apps/build-a-desktop-wallet-in-javascript.md +++ b/docs/tutorials/javascript/build-apps/build-a-desktop-wallet-in-javascript.md @@ -22,7 +22,7 @@ You can find the complete source code for all of this tutorial's examples in the ## Rationale -This tutorial will take you through the process of creating a XRP Wallet application from scratch. It begins with a "Hello World"-like example with minimal functionality, and adds more features in each step. +This tutorial takes you through the process of creating an XRP Wallet application from scratch. It begins with a "Hello World"-like example with minimal functionality, and adds more features in each step. ## Goals