diff options
author | Raghav Dua <duaraghav8@gmail.com> | 2018-01-24 02:13:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 02:13:04 +0800 |
commit | 694fc6835f600c124bdc538fe454056aea024dc8 (patch) | |
tree | 23baeaba80a2afd7e26c7f4b8a22b81c803bffc4 /docs/contracts.rst | |
parent | 18539e53530c812790fbb396a5e5ca5806efb6ba (diff) | |
download | dexon-solidity-694fc6835f600c124bdc538fe454056aea024dc8.tar.gz dexon-solidity-694fc6835f600c124bdc538fe454056aea024dc8.tar.zst dexon-solidity-694fc6835f600c124bdc538fe454056aea024dc8.zip |
correct terminology
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 69d47fef..a9b42f15 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -1053,9 +1053,9 @@ but they can be used as base contracts:: If a contract inherits from an abstract contract and does not implement all non-implemented functions by overriding, it will itself be abstract. -Note that an abstract function is different from a :ref:`Function Type <function-types>` even though their syntax looks very similar. +Note that a function without implementation is different from a :ref:`Function Type <function-types>` even though their syntax looks very similar. -Example of Abstract function (a function declaration) +Example of function without implementation (a function declaration) :: function foo(address) external returns (address); |