day2/cheatsheet2.tex
changeset 330 46533051b9d3
parent 329 0a6ab1d81491
--- a/day2/cheatsheet2.tex	Tue Dec 08 13:06:14 2009 +0530
+++ b/day2/cheatsheet2.tex	Tue Dec 22 14:10:37 2009 +0530
@@ -193,7 +193,7 @@
 \begin{lstlisting}
 In []: t = (1, 2, 3, 4, 5, 6, 7, 8) 
 \end{lstlisting}
-\textbf{Note:} For tupels we use parantheses in place of square brackets, rest is same as lists.
+\textbf{Note:} For tuples we use parentheses in place of square brackets, rest is same as lists.
 \begin{lstlisting}
 In []: t[0] + t[3] + t[-1] # elements are accessed via indices
 Out[]: 13