From 82ab185c4f5e30809254e944df4a88387278b484 Mon Sep 17 00:00:00 2001 From: Rahul Nair Date: Mon, 1 Feb 2016 14:38:27 -0600 Subject: [PATCH] trivial change changed the description to match the code. --- functions.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.