diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-09-19 17:20:25 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-09-19 17:20:25 +0800 |
commit | 8d561aa1acbe5846328f2d6429dccf3f2d178f89 (patch) | |
tree | 551f84e5ccd2f6173775bf794e075727eafd0d26 /docs | |
parent | 24ecf20209e881077363fdfbabf6fc74eae003b0 (diff) | |
download | dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.tar dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.tar.gz dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.tar.bz2 dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.tar.lz dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.tar.xz dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.tar.zst dexon-solidity-8d561aa1acbe5846328f2d6429dccf3f2d178f89.zip |
Tiny fixes on the 050 breaking changes docs section
Diffstat (limited to 'docs')
-rw-r--r-- | docs/050-breaking-changes.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/050-breaking-changes.rst b/docs/050-breaking-changes.rst index a28cc5ba..7b5acd89 100644 --- a/docs/050-breaking-changes.rst +++ b/docs/050-breaking-changes.rst @@ -46,7 +46,7 @@ hiding new and different behavior in existing code. Note that dirty higher order bits are still simply ignored. * Forward all available gas with external function calls starting from - tangerine whistle. + Tangerine Whistle. Semantic and Syntactic Changes ============================== @@ -105,8 +105,8 @@ For most of the topics the compiler will provide suggestions. where only ``address payable`` provides the ``transfer`` function. An ``address payable`` can be directly converted to an ``address``, but the other way around is not allowed. Converting ``address`` to ``address - payable`` is possible via conversion through ``uint160``. If ``c`` is - a contract, ``address(c)`` results in ``address payable`` if ``c`` has a + payable`` is possible via conversion through ``uint160``. If ``c`` is a + contract, ``address(c)`` results in ``address payable`` only if ``c`` has a payable fallback function. * Conversions between ``bytesX`` and ``uintY`` of different size are now @@ -148,7 +148,7 @@ Command Line and JSON Interfaces * Remappings with empty prefix are disallowed. -* The Json AST fields ``constant`` and ``payable`` were removed. The +* The JSON AST fields ``constant`` and ``payable`` were removed. The information is now present in the ``stateMutability`` field. Constructors |