aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-12-22 23:54:04 +0800
committerGitHub <noreply@github.com>2016-12-22 23:54:04 +0800
commit3a88580512f6cb5f3305c371bbbdda8e47f44687 (patch)
treef22ec7efc0b8421320e0bbb2dee35af97cfca881
parent8573b00eae068ebddeab6a942d6112ddfebcb948 (diff)
parentc163a219de96c2ad3f5b8f5e9a473924df742f46 (diff)
downloaddexon-solidity-3a88580512f6cb5f3305c371bbbdda8e47f44687.tar.gz
dexon-solidity-3a88580512f6cb5f3305c371bbbdda8e47f44687.tar.zst
dexon-solidity-3a88580512f6cb5f3305c371bbbdda8e47f44687.zip
Merge pull request #1518 from mcoblenz/patch-2
Corrected explanation of recursive contract creation
-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 0802c085..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 and, thus, recursive
-creation-dependencies are now possible.
+code of the contract being created has to be known in advance, so recursive
+creation-dependencies are not possible.
::