mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix grammar: "structs type" into "struct type"
This commit is contained in:
parent
55e9af2f20
commit
d6e73b013f
@ -8,7 +8,7 @@ Structure of a Contract
|
|||||||
|
|
||||||
Contracts in Solidity are similar to classes in object-oriented languages.
|
Contracts in Solidity are similar to classes in object-oriented languages.
|
||||||
Each contract can contain declarations of :ref:`structure-state-variables`, :ref:`structure-functions`,
|
Each contract can contain declarations of :ref:`structure-state-variables`, :ref:`structure-functions`,
|
||||||
:ref:`structure-function-modifiers`, :ref:`structure-events`, :ref:`structure-structs-types` and :ref:`structure-enum-types`.
|
:ref:`structure-function-modifiers`, :ref:`structure-events`, :ref:`structure-struct-types` and :ref:`structure-enum-types`.
|
||||||
Furthermore, contracts can inherit from other contracts.
|
Furthermore, contracts can inherit from other contracts.
|
||||||
|
|
||||||
.. _structure-state-variables:
|
.. _structure-state-variables:
|
||||||
@ -100,9 +100,9 @@ Events are convenience interfaces with the EVM logging facilities.
|
|||||||
See :ref:`events` in contracts section for information on how events are declared
|
See :ref:`events` in contracts section for information on how events are declared
|
||||||
and can be used from within a dapp.
|
and can be used from within a dapp.
|
||||||
|
|
||||||
.. _structure-structs-types:
|
.. _structure-struct-types:
|
||||||
|
|
||||||
Structs Types
|
Struct Types
|
||||||
=============
|
=============
|
||||||
|
|
||||||
Structs are custom defined types that can group several variables (see
|
Structs are custom defined types that can group several variables (see
|
||||||
|
Loading…
Reference in New Issue
Block a user