day2/cheatsheet2.tex
changeset 341 7ae88b9da553
parent 330 46533051b9d3
--- a/day2/cheatsheet2.tex	Tue Dec 08 16:37:18 2009 +0530
+++ b/day2/cheatsheet2.tex	Tue Jan 05 15:23:02 2010 +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