aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMichael Coblenz <mcoblenz@users.noreply.github.com>2016-12-20 04:08:18 +0800
committerGitHub <noreply@github.com>2016-12-20 04:08:18 +0800
commit31564d94b1f565f8ab9b6d7b7e673febace12643 (patch)
tree8c23803cd4510475b8595127dfce02429a82bfc3 /docs
parentaf8bc1c9087dd6fcf8fd81bd8aef25431f176143 (diff)
downloaddexon-solidity-31564d94b1f565f8ab9b6d7b7e673febace12643.tar.gz
dexon-solidity-31564d94b1f565f8ab9b6d7b7e673febace12643.tar.zst
dexon-solidity-31564d94b1f565f8ab9b6d7b7e673febace12643.zip
Fixed misleading typo
"now possible" should instead read "not possible."
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index 0802c085..f59be2fe 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -208,7 +208,7 @@ 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.
+creation-dependencies are not possible.
::