diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-27 00:05:54 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-27 00:05:54 +0800 |
commit | 61a4d93d1f6609f5ce56ae831ac063af50122dae (patch) | |
tree | 7cfb77bea74b4fb53367483f8caea500dcc64305 /docs/types.rst | |
parent | 2b2fad35566f0a3222010ea6606031770d85ad08 (diff) | |
download | dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.gz dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.zst dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.zip |
Make the exponentiation 0**0 note a real RST note
Diffstat (limited to 'docs/types.rst')
-rw-r--r-- | docs/types.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index 16948ee3..80ea3444 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -120,7 +120,8 @@ Exponentiation Exponentiation is only available for unsigned types. Please take care that the types you are using are large enough to hold the result and prepare for potential wrapping behaviour. -Note that ``0**0`` is defined by the EVM as ``1``. +.. note:: + Note that ``0**0`` is defined by the EVM as ``1``. .. index:: ! ufixed, ! fixed, ! fixed point number |