diff --git a/Create your own Ethereum token in just 30 mins/2. Let's Start Coding/1. Write Your Token Smart Contract.md b/Create your own Ethereum token in just 30 mins/2. Let's Start Coding/1. Write Your Token Smart Contract.md index 27e4bd58..0cbd76a2 100644 --- a/Create your own Ethereum token in just 30 mins/2. Let's Start Coding/1. Write Your Token Smart Contract.md +++ b/Create your own Ethereum token in just 30 mins/2. Let's Start Coding/1. Write Your Token Smart Contract.md @@ -59,7 +59,7 @@ contract MyToken is ERC20 This line basically intializes the smart contract, `MyToken`, that inherits the `ERC20` token using `is` keyword. ``` -constructor() ERC20("MetaCoin", "META") +constructor() ERC20("MangoCoin", "Mango") ``` Contracts that inherit other contracts not only call constructors of their own but also call the constructors of the inherited contracts which is exactly what is happening happening here.