summaryrefslogtreecommitdiff
path: root/day2/session2.tex
diff options
context:
space:
mode:
Diffstat (limited to 'day2/session2.tex')
-rw-r--r--day2/session2.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/day2/session2.tex b/day2/session2.tex
index 8bcc890..debf7b1 100644
--- a/day2/session2.tex
+++ b/day2/session2.tex
@@ -286,7 +286,7 @@ Out[]: [2, 4]
In []: a[::2]
Out[]: [1, 3, 5]
-In []: a[-1::-1]
+In []: a[::-1]
Out[]: [5, 4, 3, 2, 1]
\end{lstlisting}
\end{frame}