aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMichael Coblenz <mcoblenz@users.noreply.github.com>2016-12-21 02:48:01 +0800
committerGitHub <noreply@github.com>2016-12-21 02:48:01 +0800
commit4b3f147e65a16a19410c379698cba08318d118ef (patch)
tree2f0a8c2bb25c7d47e96c02cf6456b9285c2cbbc0 /docs
parent31564d94b1f565f8ab9b6d7b7e673febace12643 (diff)
downloaddexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar
dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.gz
dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.bz2
dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.lz
dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.xz
dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.tar.zst
dexon-solidity-4b3f147e65a16a19410c379698cba08318d118ef.zip
Clarified support for recursive creation.
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst4
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.
::