From 970b69cf3eb5eca37384dca4817ea04b9c3a96b6 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 9 Jun 2020 11:21:18 +0200 Subject: [PATCH] Change wording with regards to creation or initialisation. --- docs/060-breaking-changes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/060-breaking-changes.rst b/docs/060-breaking-changes.rst index 1d85e07f3..3173bca69 100644 --- a/docs/060-breaking-changes.rst +++ b/docs/060-breaking-changes.rst @@ -42,8 +42,8 @@ For most of the topics the compiler will provide suggestions. storage arrays. * The new keyword ``abstract`` can be used to mark contracts as abstract. It has to be used - if a contract does not implement all its functions. Abstract contracts cannot be initialised and solidity outputs no - no bytecode when compiling them. + if a contract does not implement all its functions. Abstract contracts cannot be created using the ``new`` operator, + and it is not possible to generate bytecode for them during compilation. * Libraries have to implement all their functions, not only the internal ones.