diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-10-14 18:04:11 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-10-19 21:02:50 +0800 |
commit | b4f24721b51431668b5e6557f6ca2c6936a2c48a (patch) | |
tree | bff566243f5b7217be138d725d711766247182bd /docs/frequently-asked-questions.rst | |
parent | 4d4b9bc68e9b6babbb5f747ae579d41375dd4f20 (diff) | |
download | dexon-solidity-b4f24721b51431668b5e6557f6ca2c6936a2c48a.tar.gz dexon-solidity-b4f24721b51431668b5e6557f6ca2c6936a2c48a.tar.zst dexon-solidity-b4f24721b51431668b5e6557f6ca2c6936a2c48a.zip |
FAQ: remove modifier section
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index e22ef332..7e3f955f 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -343,14 +343,6 @@ Examples:: C c = new C(); } -What is the ``modifier`` keyword? -================================= - -Modifiers are a way to prepend or append code to a function in order -to add guards, initialisation or cleanup functionality in a concise way. - -For examples, see the `features.sol <https://github.com/ethereum/dapp-bin/blob/master/library/features.sol>`_. - How do structs work? ==================== |