aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnAllen <johnjalleniii@gmail.com>2017-05-02 05:00:27 +0800
committerJohnAllen <johnjalleniii@gmail.com>2017-05-02 05:00:27 +0800
commitdaa8db81c8081234b593abdce2bf505ae5ce3872 (patch)
tree2b5a9c564e260675d7b2f39a8eccc209db3de64a
parentf33614e1f7c85126b8f1a6d007f5824f6dce237d (diff)
downloaddexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.tar
dexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.tar.gz
dexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.tar.bz2
dexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.tar.lz
dexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.tar.xz
dexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.tar.zst
dexon-solidity-daa8db81c8081234b593abdce2bf505ae5ce3872.zip
Correct form-from typo in layout-of-source-files.rst
-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