Merge pull request #2909 from bernardpeh/mydev

faq typo
This commit is contained in:
chriseth 2017-09-25 12:01:20 +02:00 committed by GitHub
commit a23f7f38b9

View File

@ -304,8 +304,9 @@ There are defaults for the storage location depending on which type
of variable it concerns:
* state variables are always in storage
* function arguments are always in memory
* local variables always reference storage
* function arguments are in memory by default
* local variables of struct, array or mapping type reference storage by default
* local variables of value type (i.e. neither array, nor struct nor mapping) are stored in the stack
Example::