Skip to content

Commit

Permalink
Merge pull request modelica#2982 from henrikt-ma/section-heading-period
Browse files Browse the repository at this point in the history
Small cleanup of scoping chapter
  • Loading branch information
HansOlsson committed Aug 31, 2021
2 parents c215060 + ccab400 commit 80f268a
Show file tree
Hide file tree
Showing 4 changed files with 131 additions and 214 deletions.
4 changes: 2 additions & 2 deletions chapters/equations.tex
Expand Up @@ -510,8 +510,8 @@ \subsection{terminate}\label{terminate}
The intention of \lstinline!terminate! is to give more complex stopping criteria than a fixed point in time:
\begin{lstlisting}[language=modelica]
model ThrowingBall
Real x(start=0);
Real y(start=1);
Real x(start = 0);
Real y(start = 1);
equation
der(x) = $\ldots$;
der(y) = $\ldots$;
Expand Down
2 changes: 1 addition & 1 deletion chapters/functions.tex
Expand Up @@ -1403,7 +1403,7 @@ \subsection{Using the Derivative Annotation}\label{using-the-derivative-annotati
record ThermodynamicState "Thermodynamic state"
SpecificEnthalpy h "Specific enthalpy";
AbsolutePressure p "Pressure";
Integer phase(min=1, max=2, start=1);
Integer phase(min = 1, max = 2, start = 1);
end ThermodynamicState;

record ThermoDynamicState_der "Derivative"
Expand Down
2 changes: 1 addition & 1 deletion chapters/revisions.tex
Expand Up @@ -210,7 +210,7 @@ \subsection{Main changes in Modelica 3.5}\label{main-changes-in-modelica-3-5}
Ticket \href{https://github.com/modelica/ModelicaSpecification/issues/2278}{\#2278}.
\item Clarified visibility of encrypted contents, \cref{protection-of-classes}.
Ticket \href{https://github.com/modelica/ModelicaSpecification/issues/2318}{\#2318}.
\item Clarified that missingInnerMessage is a literal string, \cref{annotations-for-the-graphical-user-interface}.
\item Clarified that \lstinline!missingInnerMessage! is a literal string, \cref{annotations-for-the-graphical-user-interface}.
Ticket \href{https://github.com/modelica/ModelicaSpecification/issues/2334}{\#2334}.
\item Clarified text-macros including \lstinline!%class!, \cref{annotations-for-the-graphical-user-interface}.
Ticket \href{https://github.com/modelica/ModelicaSpecification/issues/2335}{\#2335}.
Expand Down

0 comments on commit 80f268a

Please sign in to comment.