Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
frozeman authored and Souptacular committed Sep 11, 2017
1 parent 31ec8ac commit f90864a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EIPS/eip-20-token-standard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f90864a

Please sign in to comment.