Skip to content

Commit

Permalink
chore(docs): proofreading (#3881)
Browse files Browse the repository at this point in the history
* typo loan

* typo tokenfactory

* typo validator

* typo developing apps
  • Loading branch information
fakefraud authored Jan 11, 2024
1 parent ffcfa6d commit 531027c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/docs/02-guide/05-loan.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/02-guide/06-tokenfactory/01-tokenfactory.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/04-network/04-validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/apps/02-developing-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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"},
},
Expand Down

0 comments on commit 531027c

Please sign in to comment.