Merge pull request #1518 from mcoblenz/patch-2

Corrected explanation of recursive contract creation
This commit is contained in:
chriseth 2016-12-22 16:54:04 +01:00 committed by GitHub
commit 3a88580512

View File

@ -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.
::