aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-30 04:26:39 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-04 22:19:39 +0800
commitc975bf87db9e41014af70d74dd48514b5783c30f (patch)
tree0657a7eefd9e88a5dcdbb4a18eac25f5411197d8
parentbf294253bb455a051c6e84bd95856dffab461b23 (diff)
downloaddexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.tar
dexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.tar.gz
dexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.tar.bz2
dexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.tar.lz
dexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.tar.xz
dexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.tar.zst
dexon-solidity-c975bf87db9e41014af70d74dd48514b5783c30f.zip
Move fixed after int in docs
-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: