aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-05-02 16:38:37 +0800
committerGitHub <noreply@github.com>2017-05-02 16:38:37 +0800
commitf77f2123f0f5eef949831670609a0e85c9bd9056 (patch)
treeee1d0d276134622a571357f8ed3b30f22c81912e /docs
parent5aeb635205a24b48b5b69d01d12d73afbd145872 (diff)
parentdaa8db81c8081234b593abdce2bf505ae5ce3872 (diff)
downloaddexon-solidity-f77f2123f0f5eef949831670609a0e85c9bd9056.tar.gz
dexon-solidity-f77f2123f0f5eef949831670609a0e85c9bd9056.tar.zst
dexon-solidity-f77f2123f0f5eef949831670609a0e85c9bd9056.zip
Merge pull request #2203 from JohnAllen/develop
Correct form-from typo in layout-of-source-files.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/layout-of-source-files.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/layout-of-source-files.rst b/docs/layout-of-source-files.rst
index 05708964..715b29ae 100644
--- a/docs/layout-of-source-files.rst
+++ b/docs/layout-of-source-files.rst
@@ -26,7 +26,7 @@ The version pragma is used as follows::
pragma solidity ^0.4.0;
Such a source file will not compile with a compiler earlier than version 0.4.0
-and it will also not work on a compiler starting form version 0.5.0 (this
+and it will also not work on a compiler starting from version 0.5.0 (this
second condition is added by using ``^``). The idea behind this is that
there will be no breaking changes until version ``0.5.0``, so we can always
be sure that our code will compile the way we intended it to. We do not fix