aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-10-02 16:45:51 +0800
committerGitHub <noreply@github.com>2018-10-02 16:45:51 +0800
commitb77b79c46f197e5019fd128be78f27b95d5b4e25 (patch)
tree8c59c73466b0ec020da5b3f41da7114ae4a590e1
parent80012e69895be897e2e72859b593104acaf4db70 (diff)
parentc20c9163affaec8333c14dd10bc96c6cba33d6cb (diff)
downloaddexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.tar
dexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.tar.gz
dexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.tar.bz2
dexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.tar.lz
dexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.tar.xz
dexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.tar.zst
dexon-solidity-b77b79c46f197e5019fd128be78f27b95d5b4e25.zip
Merge pull request #5131 from Flash-Git/patch-1
Changed pragma explanation to match example
-rw-r--r--docs/introduction-to-smart-contracts.rst2
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>`_).