Browse Source

typo: remove duplicate word (#2631)

(cherry picked from commit f17624194b55b43a49b7a10e355d7f658f0799a1)
Uwe Voelker 4 years ago
parent
commit
2fa86736dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/modules/ROOT/pages/erc20.adoc

+ 1 - 1
docs/modules/ROOT/pages/erc20.adoc

@@ -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
 transfer(recipient, 5 * 10^18);