Merge pull request #11897 from paulrberg/develop

docs: delete stale note about reading code
This commit is contained in:
Harikrishnan Mulackal 2021-09-06 10:01:57 +02:00 committed by GitHub
commit 3da3ffee5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,9 +35,9 @@ Example
-------
The following example provides library code to access the code of another contract and
load it into a ``bytes`` variable. This is not possible with "plain Solidity" and the
idea is that reusable assembly libraries can enhance the Solidity language
without a compiler change.
load it into a ``bytes`` variable. This is possible with "plain Solidity" too, by using
``<address>.code``. But the point here is that reusable assembly libraries can enhance the
Solidity language without a compiler change.
.. code-block:: solidity