diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-25 01:57:36 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-30 21:44:33 +0800 |
commit | 49f5bc7ce946bb2100406b0fb20d3e73d3da4292 (patch) | |
tree | 1f21561166285a5692bac8c4b326f9ccd1a5bf85 /docs/solidity-by-example.rst | |
parent | 652bb0e8c18f5c408f8547a0d83da92a2c15deec (diff) | |
download | dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.tar dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.tar.gz dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.tar.bz2 dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.tar.lz dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.tar.xz dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.tar.zst dexon-solidity-49f5bc7ce946bb2100406b0fb20d3e73d3da4292.zip |
Changed inline code syntax
Changed from :code:`<inline>` to ``<inline>``
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r-- | docs/solidity-by-example.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index cea18c0b..52ce9849 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -30,7 +30,7 @@ The persons behind the addresses can then choose to either vote themselves or to delegate their vote to a person they trust. -At the end of the voting time, :code:`winningProposal()` +At the end of the voting time, ``winningProposal()`` will return the proposal with the largest number of votes. |