diff options
author | Puneeth Chaganti | 2009-10-26 12:41:59 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2009-10-26 12:41:59 +0530 |
commit | 53b989617dfcf2db4f851d1f342051da7a143375 (patch) | |
tree | ea686118528fd77a75849917d7c6042656b7c1e1 | |
parent | 6cccd70b0197188253960327a5b169a21f133495 (diff) | |
parent | 795201b2b1e4b71c32d5d24c1dadb4be7d26e4c1 (diff) | |
download | workshops-53b989617dfcf2db4f851d1f342051da7a143375.tar.gz workshops-53b989617dfcf2db4f851d1f342051da7a143375.tar.bz2 workshops-53b989617dfcf2db4f851d1f342051da7a143375.zip |
Merged with mainline.
-rw-r--r-- | day1/session2.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/session2.tex b/day1/session2.tex index 1a161e3..431f495 100644 --- a/day1/session2.tex +++ b/day1/session2.tex @@ -347,7 +347,7 @@ Anything within ``quotes'' is a string! \begin{lstlisting} In []: line = 'hello world' -In []: a.split() +In []: line.split() Out[]: ['hello', 'world'] \end{lstlisting} This is what happens with \typ{line} |