diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-08 01:53:57 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-08 01:53:57 +0800 |
commit | ab3531ffc36bf2bc9819c42f620415e062f13b5f (patch) | |
tree | 48c3bc44b8b62455fa911ba306ca03dcdd917d8a /docs/control-structures.rst | |
parent | 811980afe6bc989473990281440e79aecf801472 (diff) | |
download | dexon-solidity-ab3531ffc36bf2bc9819c42f620415e062f13b5f.tar.gz dexon-solidity-ab3531ffc36bf2bc9819c42f620415e062f13b5f.tar.zst dexon-solidity-ab3531ffc36bf2bc9819c42f620415e062f13b5f.zip |
Incorporate corrections
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index c2db523e..d3144c86 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -76,8 +76,8 @@ parentheses at the end perform the actual call. do just about anything. Be prepared in case it calls into other contracts of your system or even back into the calling contract before the first call returns. This means - that the called contract can change the state variables of the calling contract - via its functions. Write your functions in a way that such that, for example, calls to + that the called contract can change state variables of the calling contract + via its functions. Write your functions in a way that, for example, calls to external functions happen after any changes to state variables in your contract so your contract is not vulnerable to a recursive call exploit. |