diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-27 01:23:34 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-27 01:25:22 +0800 |
commit | 89489da4ccc80ef716db8c23ebd99cd06cc19a20 (patch) | |
tree | 41acf8375714205a23940302080d4de02f8256e4 /docs/miscellaneous.rst | |
parent | 0268cbddc7dd413fb11be679e929d4c4be4ca46a (diff) | |
download | dexon-solidity-89489da4ccc80ef716db8c23ebd99cd06cc19a20.tar.gz dexon-solidity-89489da4ccc80ef716db8c23ebd99cd06cc19a20.tar.zst dexon-solidity-89489da4ccc80ef716db8c23ebd99cd06cc19a20.zip |
Fix typo
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 98497872..e06a241f 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -17,9 +17,9 @@ Statically-sized variables (everything except mapping and dynamically-sized arra .. warning:: When using elements that are smaller than 32 bytes, your contract's gas usage may be higher. - This is because the EVM operates on 32 bytes a a time. Therefore, if the element is smaller than - that, the EVM must use more operations in order to reduce the size of the element from 32 bytes - to the desired size. + This is because the EVM operates on 32 bytes at a time. Therefore, if the element is smaller + than that, the EVM must use more operations in order to reduce the size of the element from 32 + bytes to the desired size. It is only beneficial to use reduced-size arguments if you are dealing with storage values because the compiler will pack multiple elements into one storage slot. When dealing with |