From 0897e7bceccf6e83def1f9bd0084bbfb214b7904 Mon Sep 17 00:00:00 2001 From: Sebastien Arbogast Date: Fri, 20 Jan 2017 21:52:36 +0100 Subject: [PATCH] Fixed typo on contract instance Fixed the name of the variable referencing a contract instance --- 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 6c0b0f279..532dab0c5 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -104,7 +104,7 @@ contract can be called internally. External Function Calls ----------------------- -The expressions ``this.g(8);`` and ``c.g(2);`` (where ``g`` is a contract +The expressions ``this.g(8);`` and ``c.g(2);`` (where ``c`` is a contract instance) are also valid function calls, but this time, the function will be called "externally", via a message call and not directly via jumps. Please note that function calls on ``this`` cannot be used in the constructor, as the