Skip to content

Commit a09c16a

Browse files
committed
chore: fix typos according to editorial guidelines
1 parent 91fbe49 commit a09c16a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/get-started/mesh/transactions-basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ As of writing, there are 4 main types of transactions:
1212
- [Send lovelace and assets](transactions-basic) (this)
1313
- [Interacting with smart contracts](transactions-smart-contract)
1414
- [Minting and burning assets](transactions-minting)
15-
- [Interacting with stakepools](transactions-staking)
15+
- [Interacting with stake pools](transactions-staking)
1616

1717
In this section, we will explore the following:
1818

docs/get-started/mesh/transactions-staking.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ description: APIs for staking ADA and managing stake pools.
77
image: /img/og/og-getstarted-mesh.png
88
---
99

10-
In this section, we will learn to create to stake ADA in stakepools. If you are new to transactions, be sure to check out how to create transactions to [send lovelace and assets](transactions-basic).
10+
In this section, we will learn to create to stake ADA in stake pools. If you are new to transactions, be sure to check out how to create transactions to [send lovelace and assets](transactions-basic).
1111

1212
In this section, we will explore the following:
1313

1414
- [Register Stake Address](#register-stake-address)
15-
- [Delegate ADA to Stakepool](#delegate-ada-to-stakepool)
15+
- [Delegate ADA to Stake Pool](#delegate-ada-to-stake-pool)
1616

1717
## Register Stake Address
1818

19-
New address must "register" before they can delegate to stakepools.
19+
New address must "register" before they can delegate to stake pools.
2020

2121
```javascript
2222
import { Transaction } from "@meshsdk/core";
@@ -33,7 +33,7 @@ const signedTx = await wallet.signTx(unsignedTx);
3333
const txHash = await wallet.submitTx(signedTx);
3434
```
3535

36-
## Delegate ADA to Stakepool
36+
## Delegate ADA to Stake pool
3737

3838
Delegation is the process by which ADA holders delegate the stake associated with their ADA to a stake pool. Doing so, this allows ADA holders to participate in the network and be rewarded in proportion to the amount of stake delegated.
3939

docs/get-started/technical-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ What is multisig? And how does it work on Cardano?
111111
<iframe width="100%" height="325" src="https://www.youtube.com/embed/k_ph_V7xkio" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture fullscreen"></iframe>
112112

113113
## JorManager 6
114-
Learn about what's new in the Cardano stakepool management software JorManager 6.
114+
Learn about what's new in the Cardano stake pool management software JorManager 6.
115115
<iframe width="100%" height="325" src="https://www.youtube.com/embed/7dNCcGWnkwY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture fullscreen"></iframe>
116116

117117
## How to create a FT on Cardano that doesn't completely suck!

docs/get-started/testnets-and-devnets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can download the current Cardano blockchain network configuration files for
2626
#### Guild Network
2727

2828
- Guild Network is a community maintained public testnet network that is primarily useful for 'quick' testing for development/integrations, as it runs short 1-hour epochs.
29-
- The primary use-case for this network is often short-term scope-specific testing, it has gone through previous forks on cardano chain with minimal data to ensure we do have different data objects across older forks. The faucet distribution for this network is manual and available with members across timezones based on request in [support](https://t.me/guild_operators_official) channel.
29+
- The primary use case for this network is often short-term scope-specific testing, it has gone through previous forks on cardano chain with minimal data to ensure we do have different data objects across older forks. The faucet distribution for this network is manual and available with members across timezones based on request in [support](https://t.me/guild_operators_official) channel.
3030
- The timeline for forks lead Mainnet but are flexible depending on community needs that could be discussed on [github](https://github.com/cardano-community/guild-operators/) (unless specific conditions require testing beforehand), and is useful for testing data against longer history (over 10K epochs).
3131

3232
You can download the current Cardano blockchain network configuration files for Guild Network [here](https://github.com/cardano-community/guild-operators/tree/alpha/files)

docs/integrate-cardano/creating-wallet-faucet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Always download the wallets from trusted sources. There are many fake wallets, m
5252

5353
### Creating a wallet
5454

55-
As mentioned before, in this guide we will only be focusing on the `cardano-cli` and `cardano-wallet` since they provide some level of programmability which is important when we are talking about **Cardano** integrations for different kinds of use-cases.
55+
As mentioned before, in this guide we will only be focusing on the `cardano-cli` and `cardano-wallet` since they provide some level of programmability which is important when we are talking about **Cardano** integrations for different kinds of use cases.
5656

5757

5858
#### Creating a wallet with `cardano-cli`
@@ -160,7 +160,7 @@ addr_test1vz95zjvtwm9u9mc83uzsfj55tzwf99fgeyt3gmwm9gdw2xgwrvsa5
160160
```
161161

162162
:::note
163-
You can derive more than one **wallet address** from a **Public Verification Key** for more advanced use-cases using `cardano-addresses` component. Which we discuss in more details here: ***@TODO: link to article***
163+
You can derive more than one **wallet address** from a **Public Verification Key** for more advanced use cases using `cardano-addresses` component. Which we discuss in more details here: ***@TODO: link to article***
164164

165165
- Mainnet addresses are **prefixed** with the string value `addr1`.
166166
- testnet addresses are **prefixed** with the string value `addr_test1`.

0 commit comments

Comments
 (0)