From 6740ea3fcba21634362e54af528e122c46903201 Mon Sep 17 00:00:00 2001 From: Lemuel Okoli Date: Sun, 25 Apr 2021 20:40:59 +0100 Subject: [PATCH] Fix typo --- 2/init.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2/init.md b/2/init.md index 13aeab8..05dfa10 100644 --- a/2/init.md +++ b/2/init.md @@ -6,7 +6,7 @@ We need a way to store a list of pokemon names once when we initialize our contr ## The \_\_init\_\_ Function -**\_\_init\_\_** is a special initialization function that may only be called at the time of deploying a contract. It can be used to set initial values for storage variables. A common use case is to set an owner variable with the creator the contract: +**\_\_init\_\_** is a special initialization function that may only be called at the time of deploying a contract. It can be used to set initial values for storage variables. A common use case is to set an owner variable with the creator of the contract: ```vyper owner: address