diff options
author | J Quinn <Flash-Git@users.noreply.github.com> | 2018-10-02 10:06:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 10:06:37 +0800 |
commit | c20c9163affaec8333c14dd10bc96c6cba33d6cb (patch) | |
tree | 8c59c73466b0ec020da5b3f41da7114ae4a590e1 | |
parent | 80012e69895be897e2e72859b593104acaf4db70 (diff) | |
download | dexon-solidity-c20c9163affaec8333c14dd10bc96c6cba33d6cb.tar.gz dexon-solidity-c20c9163affaec8333c14dd10bc96c6cba33d6cb.tar.zst dexon-solidity-c20c9163affaec8333c14dd10bc96c6cba33d6cb.zip |
Changed pragma explanation to match example
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 5e841417..f5d5f89e 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -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.5.0). This is to ensure that the +(up to, but not including, version 0.6.0). This is to ensure that the contract is not compilable with a new (breaking) compiler version, where it could behave differently. So-called pragmas are common instructions for compilers about how to treat the source code (e.g. `pragma once <https://en.wikipedia.org/wiki/Pragma_once>`_). |