From cf6b60c8ec6848bbd7aa41af16f356b53f86e5fc Mon Sep 17 00:00:00 2001 From: Henrik Tidefelt Date: Tue, 14 Jul 2020 23:05:25 +0200 Subject: [PATCH] Replace en-dash by colon after 'twice' --- chapters/statements.tex | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/chapters/statements.tex b/chapters/statements.tex index 158f0f4a8..32715a22b 100644 --- a/chapters/statements.tex +++ b/chapters/statements.tex @@ -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}