diff options
author | chriseth <chris@ethereum.org> | 2019-01-07 18:57:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 18:57:05 +0800 |
commit | a0b8201442e62e61abf3c18a87dd1f201f83ac0f (patch) | |
tree | 4c213e40059e84459e73ad2ffcc2e40b71ff8ce5 /docs | |
parent | f37990348a6227e65d3aade41686a5834b064044 (diff) | |
parent | cc400dbeca64691f2409b2dbaad507412bdac984 (diff) | |
download | dexon-solidity-a0b8201442e62e61abf3c18a87dd1f201f83ac0f.tar.gz dexon-solidity-a0b8201442e62e61abf3c18a87dd1f201f83ac0f.tar.zst dexon-solidity-a0b8201442e62e61abf3c18a87dd1f201f83ac0f.zip |
Merge pull request #5727 from spmvg/develop
[DOCS] fix typo in docs/contracts.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contracts.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 682cb378..746f6e00 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -585,9 +585,8 @@ return variables and then using ``return;`` to leave the function. Returning Multiple Values ------------------------- -When a function has multiple return types, the statement ``return (v0, v1, ..., vn) can be used to return multiple values. -vn)`` can return multiple values. The number of components must be -the same as the number of return types. +When a function has multiple return types, the statement ``return (v0, v1, ..., vn)`` can be used to return multiple values. +The number of components must be the same as the number of return types. .. index:: ! view function, function;view |