Skip to content

Commit 139e0f7

Browse files
authored
docs: fix grammar (#727)
1 parent ce8fbba commit 139e0f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core/stellar/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ Import the contract type(s) (for example, `fungible`) that you want to use from
3838
import { fungible } from '@openzeppelin/wizard-stellar';
3939
```
4040

41-
To generate the source code for an Fungible contract with all of the default settings:
41+
To generate the source code for a Fungible contract with all of the default settings:
4242
```js
4343
const contract = fungible.print();
4444
```
4545

46-
To generate the source code for an Fungible contract with some custom settings:
46+
To generate the source code for a Fungible contract with some custom settings:
4747
```js
4848
const contract = fungible.print({
4949
pausable: true,

packages/core/stellar/src/fungible.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ function addPremint(c: ContractBuilder, amount: string) {
204204
}
205205

206206
/**
207-
* Calculates the initial supply that would be used in an Fungible contract based on a given premint amount and number of decimals.
207+
* Calculates the initial supply that would be used in a Fungible contract based on a given premint amount and number of decimals.
208208
*
209209
* @param premint Premint amount in token units, may be fractional
210210
* @param decimals The number of decimals in the token

0 commit comments

Comments
 (0)