diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-24 23:08:54 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-24 23:08:54 +0800 |
commit | d7666d9edad6bda6fd3060744b5586c92a8f503f (patch) | |
tree | 1df7e3b8ce05266c5f7939991f4a8b9e53ad0cae /docs | |
parent | 86c65c9339111b5a8e3ce001bbaa36528d2c0e25 (diff) | |
download | dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.tar dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.tar.gz dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.tar.bz2 dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.tar.lz dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.tar.xz dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.tar.zst dexon-solidity-d7666d9edad6bda6fd3060744b5586c92a8f503f.zip |
Fixed errors introduced by previous commit
#565 introduced some errors in the documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/types.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index d18a9490..61c07282 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -140,7 +140,7 @@ number of bytes, always use one of `bytes1` to `bytes32` because they are much c Fixed Point Numbers ------------------- -**bold** COMING SOON... **bold** +**COMING SOON...** .. index:: literal, literal;rational @@ -187,6 +187,7 @@ a non-rational number). does not compile :: + uint128 a = 1; uint128 b = 2.5 + a + 0.5; |