Skip to content

Commit 56ac023

Browse files
Apply suggestions from @maria-robobug review
Co-authored-by: Maria Shodunke <[email protected]>
1 parent fd82a05 commit 56ac023

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

_code-samples/build-a-desktop-wallet/js/0-hello/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require('path')
55
/**
66
* Main function: create application window, preload the code to communicate
77
* between the renderer Process and the main Process, load a layout,
8-
* and perform the main logic
8+
* and perform the main logic.
99
*/
1010
const createWindow = () => {
1111
// Create the application window

_code-samples/build-a-desktop-wallet/js/1-ledger-index/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const getValidatedLedgerIndex = async () => {
2828
/**
2929
* Main function: create application window, preload the code to communicate
3030
* between the renderer Process and the main Process, load a layout,
31-
* and perform the main logic
31+
* and perform the main logic.
3232
*/
3333
const createWindow = () => {
3434
// Create the application window

_code-samples/build-a-desktop-wallet/js/2-async/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const createWindow = () => {
2727
// Step 2 changes - main whenReady function - start
2828
/**
2929
* Create an XRPL client, subscribe to 'ledger' events, and broadcast those by
30-
* dispatching an 'update-ledger-data' event to the frontend
30+
* dispatching an 'update-ledger-data' event to the frontend.
3131
*
3232
* @returns {Promise<void>}
3333
*/

docs/tutorials/javascript/build-apps/build-a-desktop-wallet-in-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can find the complete source code for all of this tutorial's examples in the
2222

2323
## Rationale
2424

25-
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.
25+
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.
2626

2727
## Goals
2828

0 commit comments

Comments
 (0)