documents function options must follow name

When declaring a function using the function "function", the options must follow, not precede, the function name.

The examples demonstrate this syntax, but the synopsis previously showed the options preceding the name.
This commit is contained in:
Jeremy W. Sherman 2015-05-17 14:45:54 -04:00
parent 534fd1a59e
commit c26d317da5

View file

@ -2,7 +2,7 @@
\subsection function-synopsis Synopsis \subsection function-synopsis Synopsis
\fish{synopsis} \fish{synopsis}
function [OPTIONS] NAME; BODY; end function NAME [OPTIONS]; BODY; end
\endfish \endfish
\subsection function-description Description \subsection function-description Description