Remove incorrect statement that calldata must be used for external functions

This commit is contained in:
t11s 2021-07-16 22:33:48 -07:00 committed by GitHub
parent 3d26d47d46
commit 616933cd5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,6 @@ Every reference type has an additional
annotation, the "data location", about where it is stored. There are three data locations:
``memory``, ``storage`` and ``calldata``. Calldata is a non-modifiable,
non-persistent area where function arguments are stored, and behaves mostly like memory.
It is required for parameters of external functions but can also be used for other variables.
.. note::