Apply suggestions from @maria-robobug review

Co-authored-by: Maria Shodunke <maria-robobug@users.noreply.github.com>
This commit is contained in:
Rome Reginelli
2025-10-07 14:49:48 -07:00
committed by GitHub
parent fd82a05ca1
commit 56ac023098
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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<void>}
*/

View File

@@ -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