Skip to content

Commit

Permalink
Merge pull request ethereum#3343 from ethereum/structs-struct
Browse files Browse the repository at this point in the history
Fix grammar: "structs type" into "struct type"
  • Loading branch information
axic authored Dec 18, 2017
2 parents 2e2f819 + d6e73b0 commit 460c9f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/structure-of-a-contract.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Structure of a Contract

Contracts in Solidity are similar to classes in object-oriented languages.
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.

.. _structure-state-variables:
Expand Down Expand Up @@ -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
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
Expand Down

0 comments on commit 460c9f3

Please sign in to comment.