diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-27 00:06:52 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-27 00:06:52 +0800 |
commit | a0b58696d8ad22301f5fb1f2b418c26a42352fdd (patch) | |
tree | ee02a05c285b9e4014e76e08356936bc2e4689a3 | |
parent | 61a4d93d1f6609f5ce56ae831ac063af50122dae (diff) | |
download | dexon-solidity-a0b58696d8ad22301f5fb1f2b418c26a42352fdd.tar.gz dexon-solidity-a0b58696d8ad22301f5fb1f2b418c26a42352fdd.tar.zst dexon-solidity-a0b58696d8ad22301f5fb1f2b418c26a42352fdd.zip |
Remove unary + from floating point types documentation
-rw-r--r-- | docs/types.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index 80ea3444..43291af8 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -139,7 +139,7 @@ the type and ``N`` represents how many decimal points are available. ``M`` must Operators: * Comparisons: ``<=``, ``<``, ``==``, ``!=``, ``>=``, ``>`` (evaluate to ``bool``) -* Arithmetic operators: ``+``, ``-``, unary ``-``, unary ``+``, ``*``, ``/``, ``%`` (modulo) +* Arithmetic operators: ``+``, ``-``, unary ``-``, ``*``, ``/``, ``%`` (modulo) .. note:: The main difference between floating point (``float`` and ``double`` in many languages, more precisely IEEE 754 numbers) and fixed point numbers is |