aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-07-02 22:46:54 +0800
committerErik Kundt <bitshift@posteo.org>2018-07-02 22:46:54 +0800
commit2031e8e0c15a6032c5c446edc2bfca5bd8cd8365 (patch)
treedb33aac9098939cd5372b2d745b14f4346a997c0 /docs/frequently-asked-questions.rst
parente16e37f5074ce359b852f3b2e4b80095d22952dc (diff)
downloaddexon-solidity-2031e8e0c15a6032c5c446edc2bfca5bd8cd8365.tar.gz
dexon-solidity-2031e8e0c15a6032c5c446edc2bfca5bd8cd8365.tar.zst
dexon-solidity-2031e8e0c15a6032c5c446edc2bfca5bd8cd8365.zip
Adds review suggestions.
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index 152af607..bb00441c 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -426,7 +426,7 @@ In the case of a ``contract A`` calling a new instance of ``contract B``, parent
You will need to make sure that you have both contracts aware of each other's presence and that ``contract B`` has a ``payable`` constructor.
In this example::
- pragma solidity ^0.4.24;
+ pragma solidity >0.4.24;
contract B {
constructor() public payable {}