diff --git a/functions.rst b/functions.rst index 691cd61..045998b 100644 --- a/functions.rst +++ b/functions.rst @@ -122,9 +122,9 @@ The details: * A function may take as many input parameters as required. Each one followed by its type and all separated by commas. * A function may return many result values. -* In the previous snippet, ``result1`` and ``result2`` are called +* In the previous snippet, ``output1`` and ``output2`` are called *named result parameters*, if you don't want to name the return parameters, - you can instead specify only the types, separated with commas. + you can instead specify only the types, separated with commas. * If your function returns only one output value, you may omit the parenthesis arround the output declaration portion. * If your function doesn't return any value, you may omit it entirely.