From 531027c76e00b63b4bb34212c6880573a4f13749 Mon Sep 17 00:00:00 2001 From: Vehorny <153144728+vehorny@users.noreply.github.com> Date: Thu, 11 Jan 2024 18:38:08 +0100 Subject: [PATCH] chore(docs): proofreading (#3881) * typo loan * typo tokenfactory * typo validator * typo developing apps --- docs/docs/02-guide/05-loan.md | 2 +- docs/docs/02-guide/06-tokenfactory/01-tokenfactory.md | 2 +- docs/docs/04-network/04-validator.md | 2 +- docs/docs/apps/02-developing-apps.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/02-guide/05-loan.md b/docs/docs/02-guide/05-loan.md index 0573a344fe..9b58bffb1e 100644 --- a/docs/docs/02-guide/05-loan.md +++ b/docs/docs/02-guide/05-loan.md @@ -16,7 +16,7 @@ In this tutorial you will learn how to: - **Implement Loan Transactions:** Walk through coding the logic for initiating, managing, and closing loans. - **Create Custom Tokens:** Understand how to create and manage custom tokens within your DeFi ecosystem, vital for lending and borrowing mechanisms. - **Integrate Interest Rate Models:** Dive into implementing interest rate models to calculate loan interests dynamically. -- **Ensure Security and Compliance:** Focus on security, ensure your DeFi module is resistent to common vulnerabilites by validating inputs. +- **Ensure Security and Compliance:** Focus on security, ensure your DeFi module is resistant to common vulnerabilities by validating inputs. - **Test and Debug:** Learn effective strategies for testing your DeFi module and debugging issues that arise during development. ## Setup and Scaffold diff --git a/docs/docs/02-guide/06-tokenfactory/01-tokenfactory.md b/docs/docs/02-guide/06-tokenfactory/01-tokenfactory.md index 70c1865bf9..046076e761 100644 --- a/docs/docs/02-guide/06-tokenfactory/01-tokenfactory.md +++ b/docs/docs/02-guide/06-tokenfactory/01-tokenfactory.md @@ -335,7 +335,7 @@ type BankKeeper interface { } ``` -### Commiting Your Changes +### Committing Your Changes Regular commits are vital for tracking progress and ensuring a stable rollback point if needed. After implementing these changes, use the following commands to commit: diff --git a/docs/docs/04-network/04-validator.md b/docs/docs/04-network/04-validator.md index 738dfb2777..4d3199bdc6 100644 --- a/docs/docs/04-network/04-validator.md +++ b/docs/docs/04-network/04-validator.md @@ -28,7 +28,7 @@ Launch Id Chain Id Source Phase ``` - `Launch ID` is the unique identifier of the chain on Ignite. This is the ID used to interact with the chain launch. -- `Chain ID` represents the identifer of the chain network once it will be launched. It should be a unique identifier in +- `Chain ID` represents the identifier of the chain network once it will be launched. It should be a unique identifier in practice but doesn't need to be unique on Ignite. - `Source` is the repository URL of the project. - `Phase` is the current phase of the chain launch. A chain can have 3 different phases: diff --git a/docs/docs/apps/02-developing-apps.md b/docs/docs/apps/02-developing-apps.md index 57d1fdd58b..935eddaaf8 100644 --- a/docs/docs/apps/02-developing-apps.md +++ b/docs/docs/apps/02-developing-apps.md @@ -97,7 +97,7 @@ message Manifest { // Enables sharing a single app server across all running instances of an Ignite App. // Useful if an app adds or extends long running commands. // - // Example: if an app defines a hook on `ignite chain serve`, a server is instanciated + // Example: if an app defines a hook on `ignite chain serve`, a server is instantiated // when the command is run. Now if you want to interact with that instance // from commands defined in that app, you need to enable shared host, or else the // commands will just instantiate separate app servers. @@ -143,7 +143,7 @@ func (app) Manifest(context.Context) (*plugin.Manifest, error) { Use: "oracle [name]", Short: "Scaffold an oracle module", Long: "Long description goes here...", - // Optionnal flags is required + // Optional flags is required Flags: []*plugin.Flag{ {Name: "source", Type: plugin.FlagTypeString, Usage: "the oracle source"}, },