Skip to content

A trivial change #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down