diff options
author | chriseth <c@ethdev.com> | 2016-02-19 20:16:12 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-02-19 20:16:12 +0800 |
commit | 37381072dec7636bd4648cbc291ae79c1b1fa450 (patch) | |
tree | 7aaba2cf279fd686bd038d469c03dc8a161d61b3 /docs/control-structures.rst | |
parent | 565d71748b3b359e705bbf56ced40ccd0b7dea5f (diff) | |
parent | aec2f4879a34fc0242a3352a7e52da564fe49ab4 (diff) | |
download | dexon-solidity-37381072dec7636bd4648cbc291ae79c1b1fa450.tar.gz dexon-solidity-37381072dec7636bd4648cbc291ae79c1b1fa450.tar.zst dexon-solidity-37381072dec7636bd4648cbc291ae79c1b1fa450.zip |
Merge pull request #399 from holgerd77/develop
Readability improvements and additional code examples for the Solidity docs
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 4becfcf1..989e14ba 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -20,6 +20,8 @@ there is in C and JavaScript, so `if (1) { ... }` is *not* valid Solidity. .. index:: ! function;call, function;internal, function;external +.. _function-calls: + Function Calls ============== |