Update introduction-to-smart-contracts.rst

Looks like this was missed in the bump
This commit is contained in:
Taariq Levack
2019-03-14 14:51:55 +02:00
committed by GitHub
parent d1d6d59c80
commit cacd271ba6
+1 -1
View File
@@ -33,7 +33,7 @@ Storage
The first line simply tells that the source code is written for
Solidity version 0.4.0 or anything newer that does not break functionality
(up to, but not including, version 0.6.0). This is to ensure that the
(up to, but not including, version 0.7.0). This is to ensure that the
contract is not compilable with a new (breaking) compiler version, where it could behave differently.
:ref:`Pragmas<pragma>` are common instructions for compilers about how to treat the
source code (e.g. `pragma once <https://en.wikipedia.org/wiki/Pragma_once>`_).