Skip to content

Commit

Permalink
Add trailing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Feb 22, 2022
1 parent 6cf9648 commit adb926a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapters/classes.tex
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ \section{Specialized Classes}\label{specialized-classes}
import Complex;
input Complex c1;
input Complex c2;
output Complex result
output Complex result;
algorithm
result := Complex(re=c1.re*c2.re - c1.im*c2.im,
im=c1.re*c2.im + c1.im*c2.re);
Expand Down

0 comments on commit adb926a

Please sign in to comment.