From bb1dfc62e09de619ee6cc7e75bd60e2fa6914056 Mon Sep 17 00:00:00 2001 From: Nathan Patnam Date: Thu, 3 Mar 2022 07:51:16 -0500 Subject: [PATCH] make fix (#505) --- en/1/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/1/functions.md b/en/1/functions.md index 97c32af4fd..fa51ab1522 100644 --- a/en/1/functions.md +++ b/en/1/functions.md @@ -53,7 +53,7 @@ function eatHamburgers(string memory _name, uint _amount) public { } ``` -This is a function named `eatHamburgers` that takes 2 parameters: a `string` and a `uint`. For now the body of the function is empty. Note that we're specifying the function visibility as `public`. We're also providing instructions about where the `_name` variable should be stored- in `memory`. This is required for all reference types such as arrays, structs, mappings, and strings. +This is a function named `eatHamburgers` that takes 2 parameters: a `string` and a `uint`. For now the body of the function is empty. Note that we're specifying the function visibility as `public`. We're also providing instructions about where the `_name` variable should be stored- in `memory`. This is required for all reference types such as arrays, structs, and mappings. What is a reference type you ask?