Skip to content

Commit

Permalink
Replace en-dash by colon after 'twice'
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed Jul 14, 2020
1 parent 790ef38 commit cf6b60c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions chapters/statements.tex
Expand Up @@ -145,9 +145,7 @@ \subsubsection{Assignments from Called Functions with Multiple Results}\doublela
(a, b, c) := f(1.0, 2.0);
(x[1], x[2], x[1]) := f(3,4);
\end{lstlisting}
In the second example above \lstinline!x[1]! is assigned twice -- first
with the first output and then with the third output. For that case the
following will give the same result:
In the second example above \lstinline!x[1]! is assigned twice: first with the first output, and then with the third output. For that case the following will give the same result:
\begin{lstlisting}[language=modelica]
(, x[2], x[1]) := f(3,4);
\end{lstlisting}
Expand Down

0 comments on commit cf6b60c

Please sign in to comment.