diff options
-rw-r--r-- | docs/types.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/types.rst b/docs/types.rst index 7f4570ed..c9e2e6fa 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -311,7 +311,7 @@ on it. If external function types are used outside of the context of Solidity, they are converted into the ``bytes24`` type. -Example that shows how to use internal function types: +Example that shows how to use internal function types:: library ArrayUtils { // internal functions can be used in internal library functions because @@ -356,7 +356,7 @@ Example that shows how to use internal function types: } } -Another example that uses external function types: +Another example that uses external function types:: contract Oracle { struct Request { |