mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Small documentation fixes
This commit is contained in:
parent
548b033af6
commit
b4407d90a5
@ -515,7 +515,7 @@ you can use the following in your source file:
|
|||||||
|
|
||||||
The compiler will look for the file in the VFS under ``dapp-bin/library/math.sol``.
|
The compiler will look for the file in the VFS under ``dapp-bin/library/math.sol``.
|
||||||
If the file is not available there, the source unit name will be passed to the Host Filesystem
|
If the file is not available there, the source unit name will be passed to the Host Filesystem
|
||||||
Loader, which will then look in ``/project/dapp-bin/library/iterable_mapping.sol``.
|
Loader, which will then look in ``/project/dapp-bin/library/math.sol``.
|
||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
|
|
||||||
|
@ -372,7 +372,7 @@ Array Members
|
|||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
In EVM versions before Byzantium, it was not possible to access
|
In EVM versions before Byzantium, it was not possible to access
|
||||||
dynamic arrays return from function calls. If you call functions
|
dynamic arrays returned from function calls. If you call functions
|
||||||
that return dynamic arrays, make sure to use an EVM that is set to
|
that return dynamic arrays, make sure to use an EVM that is set to
|
||||||
Byzantium mode.
|
Byzantium mode.
|
||||||
|
|
||||||
|
@ -408,7 +408,7 @@ Input Description
|
|||||||
// evm.methodIdentifiers - The list of function hashes
|
// evm.methodIdentifiers - The list of function hashes
|
||||||
// evm.gasEstimates - Function gas estimates
|
// evm.gasEstimates - Function gas estimates
|
||||||
//
|
//
|
||||||
// Note that using a using `evm`, `evm.bytecode`, etc. will select every
|
// Note that using `evm`, `evm.bytecode`, etc. will select every
|
||||||
// target part of that output. Additionally, `*` can be used as a wildcard to request everything.
|
// target part of that output. Additionally, `*` can be used as a wildcard to request everything.
|
||||||
//
|
//
|
||||||
"outputSelection": {
|
"outputSelection": {
|
||||||
|
@ -741,7 +741,7 @@ EVM Dialect
|
|||||||
-----------
|
-----------
|
||||||
|
|
||||||
The default dialect of Yul currently is the EVM dialect for the currently selected version of the EVM.
|
The default dialect of Yul currently is the EVM dialect for the currently selected version of the EVM.
|
||||||
with a version of the EVM. The only type available in this dialect
|
The only type available in this dialect
|
||||||
is ``u256``, the 256-bit native type of the Ethereum Virtual Machine.
|
is ``u256``, the 256-bit native type of the Ethereum Virtual Machine.
|
||||||
Since it is the default type of this dialect, it can be omitted.
|
Since it is the default type of this dialect, it can be omitted.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user