diff options
author | chriseth <chris@ethereum.org> | 2017-04-21 17:42:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-21 17:42:31 +0800 |
commit | 1ac7056a1a8d782e90516596b212b06457ad8da1 (patch) | |
tree | 8991ae3ec71028e570c724a8fd83710ce7e3b440 | |
parent | 3fb0072105a1851832561b7e5f99a47c3332e4f8 (diff) | |
download | dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.tar dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.tar.gz dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.tar.bz2 dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.tar.lz dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.tar.xz dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.tar.zst dexon-solidity-1ac7056a1a8d782e90516596b212b06457ad8da1.zip |
Correct syntax and link to question.
-rw-r--r-- | docs/units-and-global-variables.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 50b9291e..ab957c7d 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -100,7 +100,7 @@ Mathematical and Cryptographic Functions compute RIPEMD-160 hash of the (tightly packed) arguments ``ecrecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) returns (address)``: recover the address associated with the public key from elliptic curve signature or return zero on error - [see here for example](https://ethereum.stackexchange.com/a/1794/7586) + (`example usage <https://ethereum.stackexchange.com/q/1777/222>`_) ``revert()``: abort execution and revert state changes |