diff options
author | chriseth <c@ethdev.com> | 2016-05-25 22:46:19 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-05-25 22:46:19 +0800 |
commit | 3c2056c688fea3254dbafcd6b1840f84ab5d5700 (patch) | |
tree | 861fff09f4c481e2148949272a2bb11ad782e9ab | |
parent | 51a94d75d011b02a115a6af1c3dfa18ba2cec472 (diff) | |
parent | d7666d9edad6bda6fd3060744b5586c92a8f503f (diff) | |
download | dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.tar dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.tar.gz dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.tar.bz2 dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.tar.lz dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.tar.xz dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.tar.zst dexon-solidity-3c2056c688fea3254dbafcd6b1840f84ab5d5700.zip |
Merge pull request #593 from Denton-L/docs-fpn
Fixed errors introduced by previous commit
-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; |