Fixed typo on contract instance

Fixed the name of the variable referencing a contract instance
This commit is contained in:
Sebastien Arbogast 2017-01-20 21:52:36 +01:00 committed by GitHub
parent 12b002b3b8
commit 0897e7bcec

View File

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