Merge pull request #5727 from spmvg/develop

[DOCS] fix typo in docs/contracts.rst
This commit is contained in:
chriseth 2019-01-07 11:57:05 +01:00 committed by GitHub
commit a0b8201442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -585,9 +585,8 @@ return variables and then using ``return;`` to leave the function.
Returning Multiple Values Returning Multiple Values
------------------------- -------------------------
When a function has multiple return types, the statement ``return (v0, v1, ..., vn) can be used to return 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 number of components must be the same as the number of return types.
the same as the number of return types.
.. index:: ! view function, function;view .. index:: ! view function, function;view