From 029d8da86ea5cacc8703f3297d1271db64d47cbe Mon Sep 17 00:00:00 2001 From: Julien Bouteloup Date: Sun, 1 Nov 2020 18:48:36 +0100 Subject: [PATCH] Fix typo --- 1/public_vars.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1/public_vars.md b/1/public_vars.md index 2153b31..23d016b 100644 --- a/1/public_vars.md +++ b/1/public_vars.md @@ -8,7 +8,7 @@ publicName: public(String[64]) The compiler automatically creates getter functions for all `public` storage variables. These getter functions are NOT written in your code, but are generated by the compiler when it compiles it. -For the example above, the compiler will generate a function named `publicName` that does not take any arguments and returns an `String[64]`, the value of the state variable `publicName`. So, even if you cannot see any function named `publicName`, it will be generated when your code is compiled. +For the example above, the compiler will generate a function named `publicName` that does not take any arguments and returns a `String[64]`, the value of the state variable `publicName`. So, even if you cannot see any function named `publicName`, it will be generated when your code is compiled. ## Put it to the test