Skip to content

Commit a52c9a7

Browse files
fixup! Update docs
1 parent d42914e commit a52c9a7

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

docs/cheatsheet.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Members of ``address``
5757
- ``<address payable>.transfer(uint256 amount)``: send given amount of Wei to :ref:`address`, throws on failure
5858

5959
.. warning::
60-
``send`` and ``transfer`` are deprecated and scheduled for removal in the next breaking version (0.9).
60+
``send`` and ``transfer`` are deprecated and scheduled for removal.
6161
Use the :ref:`call function <address_call_functions>` with an optionally provided maximum amount of
6262
gas (by default forwards 63/64 of the remaining gas) and an empty calldata parameter, e.g., ``call{value: amount}("")``.
6363

docs/contracts/functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ will consume more gas than the 2300 gas stipend:
311311
- Sending Ether
312312

313313
.. warning::
314-
``send`` and ``transfer`` are deprecated and scheduled for removal in the next breaking version (0.9).
314+
``send`` and ``transfer`` are deprecated and scheduled.
315315
Use the :ref:`call function <address_call_functions>` with an optionally provided maximum amount of
316316
gas (default forwards all remaining gas) and an empty calldata parameter, e.g., ``call{value: amount}("")``.
317317

docs/contracts/inheritance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ explicitly:
428428
}
429429
430430
.. warning::
431-
``virtual`` modifiers are deprecated and scheduled for removal in the next breaking version (0.9).
431+
``virtual`` modifiers are deprecated and scheduled.
432432

433433

434434
.. index:: ! constructor

docs/layout-of-source-files.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ It is considered non-experimental as of Solidity 0.6.0 and it is enabled by defa
108108
with Solidity 0.8.0. The old ABI coder can still be selected using ``pragma abicoder v1;``.
109109

110110
.. warning::
111-
The ABI coder v1 is deprecated and scheduled for removal in the next breaking version (0.9).
111+
The ABI coder v1 is deprecated and scheduled for removal.
112112
Use ABI coder v2 instead.
113113

114114
The set of types supported by the new encoder is a strict superset of

docs/types/value-types.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ For a quick reference of all members of address, see :ref:`address_related`.
262262
If ``x`` is a contract address, its code (more specifically: its :ref:`receive-ether-function`, if present, or otherwise its :ref:`fallback-function`, if present) will be executed together with the ``transfer`` call (this is a feature of the EVM and cannot be prevented). If that execution runs out of gas or fails in any way, the Ether transfer will be reverted and the current contract will stop with an exception.
263263

264264
.. warning::
265-
``transfer`` is deprecated and scheduled for removal in the next breaking version (0.9).
265+
``transfer`` is deprecated and scheduled for removal.
266266
Use the :ref:`call function <address_call_functions>` with an optionally provided maximum amount of
267267
gas (default forwards all remaining gas) and an empty calldata parameter, e.g., ``call{value: amount}("")``.
268268

@@ -277,7 +277,7 @@ For a quick reference of all members of address, see :ref:`address_related`.
277277
use a pattern where the recipient withdraws the Ether.
278278

279279
.. warning::
280-
``send`` is deprecated and scheduled for removal in the next breaking version (0.9).
280+
``send`` is deprecated and scheduled for removal.
281281
Use the :ref:`call function <address_call_functions>` with an optionally provided maximum amount of
282282
gas (default forwards all remaining gas) and an empty calldata parameter, e.g., ``call{value: amount}("")``.
283283

docs/units-and-global-variables.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Members of Address Types
269269
send given amount of Wei to :ref:`address`, returns ``false`` on failure, forwards 2300 gas stipend, not adjustable
270270

271271
.. warning::
272-
``send`` and ``transfer`` are deprecated and scheduled for removal in the next breaking version (0.9).
272+
``send`` and ``transfer`` are deprecated and scheduled for removal.
273273
Use the :ref:`call function <address_call_functions>` with an optionally provided maximum amount of
274274
gas (default forwards all remaining gas) and an empty calldata parameter, e.g., ``call{value: amount}("")``.
275275

0 commit comments

Comments
 (0)