Skip to content

Commit

Permalink
Add missing semicolon in listing
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed Nov 23, 2020
1 parent 72276fe commit 4a8407e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapters/synchronous.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ \subsection{Solver Methods}\label{solver-methods}
input Real u;
Real x(start = 1, fixed = true);
equation
der(x) = -x + u
der(x) = -x + u;
\end{lstlisting}
shall be transformed to a clocked discretized continuous-time partition with the \lstinline!"ExplicitEuler"! method. The following model is a manual implementation:
\begin{lstlisting}[language=modelica]
Expand Down

0 comments on commit 4a8407e

Please sign in to comment.