From ff3de6cb5d930f178abb6906394d9598a6ad67df Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 12 Dec 2019 20:05:51 +0100 Subject: [PATCH] Update docs/060-breaking-changes.rst Co-Authored-By: Bhargava Shastry --- docs/060-breaking-changes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/060-breaking-changes.rst b/docs/060-breaking-changes.rst index 8c70514cf..34f1c38e1 100644 --- a/docs/060-breaking-changes.rst +++ b/docs/060-breaking-changes.rst @@ -92,7 +92,7 @@ or at least were more difficult to achieve prior to Solidity 0.6.0. * ``struct`` and ``enum`` types can be declared at file level. * Array slices can be used for calldata arrays, for example ``abi.decode(msg.data[4:], (uint, uint))`` is a low-level way to decode the function call payload. - * Natspec supports multiple return parameters in dev documentation, enforcing the same naming check as ``@param``. + * Natspec supports multiple return parameters in developer documentation, enforcing the same naming check as ``@param``. * Yul and Inline Assembly have a new statement called ``leave`` that exits the current function. * Conversions from ``address`` to ``address payable`` are now possible via ``payable(x)``, where ``x`` must be of type ``address``.