aboutsummaryrefslogtreecommitdiffstats
path: root/docs/types.rst
diff options
context:
space:
mode:
authorJason Cobb <jason.e.cobb@gmail.com>2018-02-16 23:11:07 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-03-31 07:56:36 +0800
commite37b619593cc926873279dc1d5f532a7a13b6fa4 (patch)
treedddcf809cbeb342003891b20690e597d8b1c3f7a /docs/types.rst
parentbe261ed519e472af071f0b70acfbc277a5861a20 (diff)
downloaddexon-solidity-e37b619593cc926873279dc1d5f532a7a13b6fa4.tar.gz
dexon-solidity-e37b619593cc926873279dc1d5f532a7a13b6fa4.tar.zst
dexon-solidity-e37b619593cc926873279dc1d5f532a7a13b6fa4.zip
Set default fixed point decimal places to 18
Diffstat (limited to 'docs/types.rst')
-rw-r--r--docs/types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst
index e704687e..5de6d07e 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -81,7 +81,7 @@ Fixed Point Numbers
``fixed`` / ``ufixed``: Signed and unsigned fixed point number of various sizes. Keywords ``ufixedMxN`` and ``fixedMxN``, where ``M`` represents the number of bits taken by
the type and ``N`` represents how many decimal points are available. ``M`` must be divisible by 8 and goes from 8 to 256 bits. ``N`` must be between 0 and 80, inclusive.
-``ufixed`` and ``fixed`` are aliases for ``ufixed128x19`` and ``fixed128x19``, respectively.
+``ufixed`` and ``fixed`` are aliases for ``ufixed128x18`` and ``fixed128x18``, respectively.
Operators: