diff options
author | Michael Coblenz <mcoblenz@users.noreply.github.com> | 2016-12-21 02:48:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-21 02:48:01 +0800 |
commit | 4b3f147e65a16a19410c379698cba08318d118ef (patch) | |
tree | 2f0a8c2bb25c7d47e96c02cf6456b9285c2cbbc0 /docs | |
parent | 31564d94b1f565f8ab9b6d7b7e673febace12643 (diff) | |
download | dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.gz dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.zst dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.zip |
Clarified support for recursive creation.
Diffstat (limited to 'docs')
-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 f59be2fe..b57c12f8 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -207,8 +207,8 @@ Creating Contracts via ``new`` ============================== A contract can create a new contract using the ``new`` keyword. The full -code of the contract being created has to be known and, thus, recursive -creation-dependencies are not possible. +code of the contract being created has to be known; though recursive +creation-dependencies are possible, cyclic dependencies are not. :: |