From f90864a3d2b2b45c4decf95efd26b3f0c276051a Mon Sep 17 00:00:00 2001 From: Fabian Vogelsteller Date: Fri, 8 Sep 2017 13:38:14 +0200 Subject: [PATCH] fix spelling --- EIPS/eip-20-token-standard.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EIPS/eip-20-token-standard.md b/EIPS/eip-20-token-standard.md index 2952404f..c5facc53 100644 --- a/EIPS/eip-20-token-standard.md +++ b/EIPS/eip-20-token-standard.md @@ -37,7 +37,7 @@ A standard interface allows any tokens on Ethereum to be re-used by other applic Returns the name of the token - e.g. `"MyToken"`. -OPTIONAL - This method can be used to improve useability, +OPTIONAL - This method can be used to improve usability, but interfaces and other contracts MUST NOT expect these values to be present. @@ -50,7 +50,7 @@ function name() constant returns (string name) Returns the symbol of the token. E.g. "HIX". -OPTIONAL - This method can be used to improve useability, +OPTIONAL - This method can be used to improve usability, but interfaces and other contracts MUST NOT expect these values to be present. ``` js @@ -63,7 +63,7 @@ function symbol() constant returns (string symbol) Returns the number of decimals the token uses - e.g. `8`, means to divide the token amount by `100000000` to get its user representation. -OPTIONAL - This method can be used to improve useability, +OPTIONAL - This method can be used to improve usability, but interfaces and other contracts MUST NOT expect these values to be present. ``` js