typo: remove duplicate word (#2631)

(cherry picked from commit f17624194b)
This commit is contained in:
Uwe Voelker
2021-04-17 01:07:09 +02:00
committed by Hadrien Croubois
parent 7360a2532d
commit 2fa86736dd

View File

@ -70,7 +70,7 @@ function decimals() public view virtual override returns (uint8) {
} }
``` ```
So if you want to send `5` tokens using a token contract with 18 decimals, the the method to call will actually be: So if you want to send `5` tokens using a token contract with 18 decimals, the method to call will actually be:
```solidity ```solidity
transfer(recipient, 5 * 10^18); transfer(recipient, 5 * 10^18);