From f17624194b55b43a49b7a10e355d7f658f0799a1 Mon Sep 17 00:00:00 2001 From: Uwe Voelker Date: Sat, 17 Apr 2021 01:07:09 +0200 Subject: [PATCH] typo: remove duplicate word (#2631) --- docs/modules/ROOT/pages/erc20.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/erc20.adoc b/docs/modules/ROOT/pages/erc20.adoc index 9f2c7bd9e..11b650a1e 100644 --- a/docs/modules/ROOT/pages/erc20.adoc +++ b/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);