Skip to content

Commit

Permalink
Write error condition in parenthesis instead of at start of sentence
Browse files Browse the repository at this point in the history
Addressing review comment by Hans.
  • Loading branch information
henrikt-ma committed May 6, 2020
1 parent ee72ec3 commit 0060bd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chapters/functions.tex
Expand Up @@ -444,8 +444,8 @@ \subsection{Positional or Named Input Arguments of Functions}\doublelabel{positi
order of the parameters is given by the order of the component
declarations in the function definition. Next, for each named argument
\lstinline!identifier = expression!, the \lstinline!identifier! is used to determine the
corresponding slot. It is an error if this slot is already filled, and the value of the argument is placed in the slot,
filling it. When all arguments have been processed, the slots that are
corresponding slot. The value of the argument is placed in the slot,
filling it (it is an error if this slot is already filled). When all arguments have been processed, the slots that are
still unfilled are filled with the corresponding default value of the
function definition. The default values may depend on other inputs
(these dependencies must be acyclical in the function) -- the values for
Expand Down

0 comments on commit 0060bd4

Please sign in to comment.