Unverified Commit f1762419 by Uwe Voelker Committed by GitHub

typo: remove duplicate word (#2631)

parent 72eb905c
...@@ -70,7 +70,7 @@ function decimals() public view virtual override returns (uint8) { ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment