diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-03 07:52:34 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-03 08:17:21 +0800 |
commit | ace583d0a1ec21cc184fb5734a9fd8c2147391e4 (patch) | |
tree | b05291501171ac29b1b4910ecb4ba55dcb999c23 /docs/structure-of-a-contract.rst | |
parent | bea59b0ca7fd497baf82e5960649854dff268d8a (diff) | |
download | dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.gz dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.zst dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.zip |
Rename accessor to getter
Diffstat (limited to 'docs/structure-of-a-contract.rst')
-rw-r--r-- | docs/structure-of-a-contract.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/structure-of-a-contract.rst b/docs/structure-of-a-contract.rst index c7af0c8c..24ef69a6 100644 --- a/docs/structure-of-a-contract.rst +++ b/docs/structure-of-a-contract.rst @@ -28,7 +28,7 @@ State variables are values which are permanently stored in contract storage. } See the :ref:`types` section for valid state variable types and -:ref:`visibility-and-accessors` for possible choices for +:ref:`visibility-and-getters` for possible choices for visibility. .. _structure-functions: @@ -49,7 +49,7 @@ Functions are the executable units of code within a contract. } :ref:`function-calls` can happen internally or externally -and have different levels of visibility (:ref:`visibility-and-accessors`) +and have different levels of visibility (:ref:`visibility-and-getters`) towards other contracts. .. _structure-function-modifiers: |