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?