Skip to content

Commit 5cced4a

Browse files
authored
Merge pull request #23 from RMeli/fix/#20
Add missing )
2 parents 329e0ba + b31d9dc commit 5cced4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

handout-beginner.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ \subsection*{\rmfamily Choose}
123123
% -----------------------------------------------------------------------------
124124
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
125125
\begin{lstlisting}[belowskip=-\baselineskip]
126-
Z = np.random.uniform(0, 1, (8,8)
126+
Z = np.random.uniform(0, 1, (8,8))
127127

128128
ax.imshow(Z)
129129
\end{lstlisting}
@@ -132,7 +132,7 @@ \subsection*{\rmfamily Choose}
132132
% -----------------------------------------------------------------------------
133133
\begin{tabular}{@{}m{.821\linewidth}m{.169\linewidth}}
134134
\begin{lstlisting}[belowskip=-\baselineskip]
135-
Z = np.random.uniform(0, 1, (8,8)
135+
Z = np.random.uniform(0, 1, (8,8))
136136

137137
ax.contourf(Z)
138138
\end{lstlisting}

0 commit comments

Comments
 (0)