aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-09-19 17:42:16 +0800
committerGitHub <noreply@github.com>2018-09-19 17:42:16 +0800
commit785cbf40056e8d4c3c7629d37ec69b403e768aa9 (patch)
tree551f84e5ccd2f6173775bf794e075727eafd0d26 /docs
parent24ecf20209e881077363fdfbabf6fc74eae003b0 (diff)
parent8d561aa1acbe5846328f2d6429dccf3f2d178f89 (diff)
downloaddexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.tar
dexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.tar.gz
dexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.tar.bz2
dexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.tar.lz
dexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.tar.xz
dexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.tar.zst
dexon-solidity-785cbf40056e8d4c3c7629d37ec69b403e768aa9.zip
Merge pull request #5016 from ethereum/050_docs
Tiny changes on the 050 breaking changes docs section
Diffstat (limited to 'docs')
-rw-r--r--docs/050-breaking-changes.rst8
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