diff options
author | chriseth <c@ethdev.com> | 2016-11-15 04:51:41 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-11-16 21:37:19 +0800 |
commit | 830f14c3a3c7bc991ad34c1b0299a31368853d97 (patch) | |
tree | fc11b2f1c100d4eee18fb26d42d784da64472a51 | |
parent | ec31d08775021de0f3279dbeb115b3e688c5997e (diff) | |
download | dexon-solidity-830f14c3a3c7bc991ad34c1b0299a31368853d97.tar.gz dexon-solidity-830f14c3a3c7bc991ad34c1b0299a31368853d97.tar.zst dexon-solidity-830f14c3a3c7bc991ad34c1b0299a31368853d97.zip |
Fix documentation formatting.
-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 { |