aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/types.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/types.rst b/docs/types.rst
index aa4589de..b8d387b2 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -70,6 +70,15 @@ sign extends. Shifting by a negative amount throws a runtime exception.
are going to be rounded towards zero (truncated). In other programming languages the shift right of negative values
works like division with rounding down (towards negative infinity).
+.. index:: ! ufixed, ! fixed, ! fixed point number
+
+Fixed Point Numbers
+-------------------
+
+.. warning::
+ Fixed point numbers are not fully supported by Solidity yet. They can be declared, but
+ cannot be assigned to or from.
+
.. index:: address, balance, send, call, callcode, delegatecall, transfer
.. _address:
@@ -181,15 +190,6 @@ As a rule of thumb, use ``bytes`` for arbitrary-length raw byte data and ``strin
for arbitrary-length string (UTF-8) data. If you can limit the length to a certain
number of bytes, always use one of ``bytes1`` to ``bytes32`` because they are much cheaper.
-.. index:: ! ufixed, ! fixed, ! fixed point number
-
-Fixed Point Numbers
--------------------
-
-.. warning::
- Fixed point numbers are not fully supported by Solidity yet. They can be declared, but
- cannot be assigned to or from.
-
.. index:: address, literal;address
.. _address_literals: