aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-09-27 00:05:54 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-09-27 00:05:54 +0800
commit61a4d93d1f6609f5ce56ae831ac063af50122dae (patch)
tree7cfb77bea74b4fb53367483f8caea500dcc64305 /docs
parent2b2fad35566f0a3222010ea6606031770d85ad08 (diff)
downloaddexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar
dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.gz
dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.bz2
dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.lz
dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.xz
dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.tar.zst
dexon-solidity-61a4d93d1f6609f5ce56ae831ac063af50122dae.zip
Make the exponentiation 0**0 note a real RST note
Diffstat (limited to 'docs')
-rw-r--r--docs/types.rst3
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