Merge pull request #2203 from JohnAllen/develop

Correct form-from typo in layout-of-source-files.rst
This commit is contained in:
Alex Beregszaszi 2017-05-02 09:38:37 +01:00 committed by GitHub
commit f77f2123f0

View File

@ -26,7 +26,7 @@ The version pragma is used as follows::
pragma solidity ^0.4.0; pragma solidity ^0.4.0;
Such a source file will not compile with a compiler earlier than version 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 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 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 be sure that our code will compile the way we intended it to. We do not fix