aboutsummaryrefslogtreecommitdiffstats
path: root/docs/control-structures.rst
diff options
context:
space:
mode:
authorMichael Coblenz <mcoblenz@users.noreply.github.com>2016-12-22 23:35:58 +0800
committerGitHub <noreply@github.com>2016-12-22 23:35:58 +0800
commitc163a219de96c2ad3f5b8f5e9a473924df742f46 (patch)
tree9940d469520eb94217f1253d535e6c58585071df /docs/control-structures.rst
parent4b3f147e65a16a19410c379698cba08318d118ef (diff)
downloaddexon-solidity-c163a219de96c2ad3f5b8f5e9a473924df742f46.tar.gz
dexon-solidity-c163a219de96c2ad3f5b8f5e9a473924df742f46.tar.zst
dexon-solidity-c163a219de96c2ad3f5b8f5e9a473924df742f46.zip
Corrected explanation per discussion.
Diffstat (limited to 'docs/control-structures.rst')
-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 b57c12f8..6c0b0f27 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; though recursive
-creation-dependencies are possible, cyclic dependencies are not.
+code of the contract being created has to be known in advance, so recursive
+creation-dependencies are not possible.
::