From cc400dbeca64691f2409b2dbaad507412bdac984 Mon Sep 17 00:00:00 2001 From: spmvg <13852721+spmvg@users.noreply.github.com> Date: Sun, 30 Dec 2018 22:23:20 +0100 Subject: [PATCH] fix typo in docs --- docs/contracts.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/contracts.rst b/docs/contracts.rst index 682cb3782..746f6e00d 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