From 3387e134d79aa5850042a1c468c0e3b701930463 Mon Sep 17 00:00:00 2001 From: Adam Bliss Date: Sun, 24 Oct 2021 08:22:34 -0400 Subject: [PATCH] Fix typo compiler->constructor. --- docs/control-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 1de35cf6b..49e66537d 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -288,7 +288,7 @@ which only need to be created if there is a dispute. re-created at the same address after having been destroyed. Yet, it is possible for that newly created contract to have a different deployed bytecode even though the creation bytecode has been the same (which is a requirement because - otherwise the address would change). This is due to the fact that the compiler + otherwise the address would change). This is due to the fact that the constructor can query external state that might have changed between the two creations and incorporate that into the deployed bytecode before it is stored.