Skip to content

Commit dfd27b2

Browse files
committed
update docs
1 parent 49744dd commit dfd27b2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/ERC20Base.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ function increaseAllowance(address spender, uint256 addedValue) external nonpaya
191191
|---|---|---|
192192
| _0 | bool | undefined |
193193

194-
### mint
194+
### mintTo
195195

196196
```solidity
197-
function mint(address _to, uint256 _amount) external nonpayable
197+
function mintTo(address _to, uint256 _amount) external nonpayable
198198
```
199199

200200
Lets an authorized address mint tokens to a recipient.

docs/ERC20SignatureMint.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ function increaseAllowance(address spender, uint256 addedValue) external nonpaya
191191
|---|---|---|
192192
| _0 | bool | undefined |
193193

194-
### mint
194+
### mintTo
195195

196196
```solidity
197-
function mint(address _to, uint256 _amount) external nonpayable
197+
function mintTo(address _to, uint256 _amount) external nonpayable
198198
```
199199

200200
Lets an authorized address mint tokens to a recipient.

docs/ERC20SignatureMintVote.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,10 @@ function increaseAllowance(address spender, uint256 addedValue) external nonpaya
340340
|---|---|---|
341341
| _0 | bool | undefined |
342342

343-
### mint
343+
### mintTo
344344

345345
```solidity
346-
function mint(address _to, uint256 _amount) external nonpayable
346+
function mintTo(address _to, uint256 _amount) external nonpayable
347347
```
348348

349349
Lets an authorized address mint tokens to a recipient.

docs/ERC20Vote.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,10 @@ function increaseAllowance(address spender, uint256 addedValue) external nonpaya
340340
|---|---|---|
341341
| _0 | bool | undefined |
342342

343-
### mint
343+
### mintTo
344344

345345
```solidity
346-
function mint(address _to, uint256 _amount) external nonpayable
346+
function mintTo(address _to, uint256 _amount) external nonpayable
347347
```
348348

349349
Lets an authorized address mint tokens to a recipient.

0 commit comments

Comments
 (0)