Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/cairo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const contract = erc20.print({
});
```

To generate the source code for an ERC20 contract with all of the defaults but is upgradeable:
To generate the source code for an ERC20 contract that uses all defaults and is upgradeable:
```js
const contract = erc20.print({
...erc20.defaults,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/cairo_alpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const contract = erc20.print({
});
```

To generate the source code for an ERC20 contract with all of the defaults but is upgradeable:
To generate the source code for an ERC20 contract that uses all defaults and is upgradeable:
```js
const contract = erc20.print({
...erc20.defaults,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/solidity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const contract = erc20.print({
});
```

To generate the source code for an ERC20 contract with all of the defaults but is upgradeable using the UUPS proxy pattern:
To generate the source code for an ERC20 contract that uses all defaults and is upgradeable using the UUPS proxy pattern:
```js
const contract = erc20.print({
...erc20.defaults,
Expand Down
Loading