aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contracts.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r--docs/contracts.rst4
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);