Skip to content

Commit 9160d95

Browse files
authored
chore: fix some typos in comments (#2543)
Signed-off-by: alaningtrump <alaningtrump@outlook.com>
1 parent 2e5ed9a commit 9160d95

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/build/guides/dapps/react.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function MintButton({
5555
}
5656
```
5757

58-
This functional component takes three properties as arguments: `account`, `decimals`, and `symbol`. It demonstrates the concept of prop passing, a way to pass data from parent to child components in React. The `onComplete` prop even allows you to pass functions to your copmonents as props. We also see React's `useState` hook for local state management, a method to preserve values between function calls.
58+
This functional component takes three properties as arguments: `account`, `decimals`, and `symbol`. It demonstrates the concept of prop passing, a way to pass data from parent to child components in React. The `onComplete` prop even allows you to pass functions to your components as props. We also see React's `useState` hook for local state management, a method to preserve values between function calls.
5959

6060
## State Management and Hooks
6161

docs/learn/fundamentals/transactions/list-of-operations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ Learn more about claimable balances: [Claimable Balances Guide](../../../build/g
582582

583583
| Parameters | Type | Description |
584584
| --- | --- | --- |
585-
| BalanceID | claimableBalanceID | The BalanceID on the ClaimableBalanceEntry that the source account is claiming, which can be retrieved from a succesful `CreateClaimableBalanceResult` |
585+
| BalanceID | claimableBalanceID | The BalanceID on the ClaimableBalanceEntry that the source account is claiming, which can be retrieved from a successful `CreateClaimableBalanceResult` |
586586

587587
**Possible errors**:
588588

docs/learn/migrate/evm/smart-contract-deployment.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ stellar contract invoke \
998998

999999
</TabItem>
10001000

1001-
<TabItem value="insatll wasm" label="install.sh">
1001+
<TabItem value="install wasm" label="install.sh">
10021002

10031003
```bash
10041004
stellar contract install \
@@ -1185,7 +1185,7 @@ stellar contract invoke \
11851185
--token <TOKEN_CONTRACT_ADDRESS>
11861186
```
11871187

1188-
After recieving the transaction has been submitted, we will mint some tokens to **both** our User Account and Vault Contract addresses. We can do this by running the `mint.sh` script.
1188+
After receiving the transaction has been submitted, we will mint some tokens to **both** our User Account and Vault Contract addresses. We can do this by running the `mint.sh` script.
11891189

11901190
```bash
11911191
stellar contract invoke \

docs/platforms/anchor-platform/sep-guide/sep31/integration.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ In this example, the `GDJ...X47` public key identifies the sending organization,
106106

107107
</CodeExample>
108108

109-
Your business server can use any identifer for customers as long as it is a string.
109+
Your business server can use any identifier for customers as long as it is a string.
110110

111111
Following the registration of a customer, the sending organization can use either approach when checking the customer's status. For example, you may get a `GET /customer` request like the following:
112112

@@ -118,7 +118,7 @@ Following the registration of a customer, the sending organization can use eithe
118118
119119
</CodeExample>
120120
121-
Or, the sending organziation could use the identifier you returned when they originally registered the customer.
121+
Or, the sending organization could use the identifier you returned when they originally registered the customer.
122122
123123
<CodeExample>
124124
@@ -147,7 +147,7 @@ You can test your implementation with the [Stellar Demo Wallet][demo-wallet] fol
147147
5. Fund your account with a balance of the asset
148148
6. Select "SEP-31 Send" in the dropdown menu
149149
150-
You should see the demo wallet find your service URLs, authenticate, and check which KYC fields it needs to collect. It should then present a form for you to enter the KYC details for the sender and reciever.
150+
You should see the demo wallet find your service URLs, authenticate, and check which KYC fields it needs to collect. It should then present a form for you to enter the KYC details for the sender and receiver.
151151
152152
[![demo wallet after initiating a transaction](/assets/ap/anchor-platform-sep31-demo-wallet-widget.png)](/assets/ap/anchor-platform-sep31-demo-wallet-widget.png)
153153

docs/tools/openzeppelin-contracts.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ OpenZeppelin Stellar Contracts is a collection of audited contracts and utilitie
7575
- **Pausable Operations**: Emergency pause functionality for the entire token
7676
- **Role-Based Access Control (RBAC)**: Flexible privilege management for administrative functions
7777

78-
**Token Vault** The Fungible Token Vault extends the Fungible Token and implents [SEP-56 Tokenized Vault Standard](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0056.md), enabling fungible tokens to represent shares in an underlying asset pool. The tokenized vault standard is the formalized interface for yield-bearing vaults that hold underlying assets. Vault shares enable hyperfungible collaterals in DeFi and remain fully compatible with standard fungible token operations.
78+
**Token Vault** The Fungible Token Vault extends the Fungible Token and implements [SEP-56 Tokenized Vault Standard](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0056.md), enabling fungible tokens to represent shares in an underlying asset pool. The tokenized vault standard is the formalized interface for yield-bearing vaults that hold underlying assets. Vault shares enable hyperfungible collaterals in DeFi and remain fully compatible with standard fungible token operations.
7979

8080
**Smart Accounts**
8181

@@ -118,7 +118,7 @@ Repository Structure
118118
│ ├── tokens/ # Various token types (fungible, non-fungible, RWA, vault, etc.)
119119
```
120120

121-
To provide feedback on these contracts and utilties, please open issues at: [https://github.com/OpenZeppelin/stellar-contracts/issues](https://github.com/OpenZeppelin/stellar-contracts/issues)
121+
To provide feedback on these contracts and utilities, please open issues at: [https://github.com/OpenZeppelin/stellar-contracts/issues](https://github.com/OpenZeppelin/stellar-contracts/issues)
122122

123123
## OpenZeppelin Open Source Tools
124124

0 commit comments

Comments
 (0)