summaryrefslogtreecommitdiff
path: root/day2/cheatsheet1.tex
diff options
context:
space:
mode:
authorSantosh G. Vattam2010-01-05 15:23:02 +0530
committerSantosh G. Vattam2010-01-05 15:23:02 +0530
commit40143d0f21438479e204f8c415698fe7c9ac36fe (patch)
tree01ab9ea0019ca45828493ce373737f38240e9279 /day2/cheatsheet1.tex
parente60b5c2290e99fb20d141be90ed5655335a1e8e9 (diff)
parent0b19439dc11ce0c1b09f82eec22e773cca815e11 (diff)
downloadworkshops-40143d0f21438479e204f8c415698fe7c9ac36fe.tar.gz
workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.tar.bz2
workshops-40143d0f21438479e204f8c415698fe7c9ac36fe.zip
Branches merged.
Diffstat (limited to 'day2/cheatsheet1.tex')
-rwxr-xr-xday2/cheatsheet1.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/day2/cheatsheet1.tex b/day2/cheatsheet1.tex
index 22289b3..6ddb1ee 100755
--- a/day2/cheatsheet1.tex
+++ b/day2/cheatsheet1.tex
@@ -108,7 +108,7 @@ In []: x, y = 1, 1.234 #initializing two variables
In []: 'x is %s, y is %s' %(x, y)
Out[]: 'x is 1, y is 1.234'
\end{lstlisting}
-\textbf{Note:} \typ{\%s} used in above fomatting specifies \typ{'str'} representation of variables. One can also try:\\
+\textbf{Note:} \typ{\%s} used in above formatting specifies \typ{'str'} representation of variables. One can also try:\\
\typ{\%d} for \typ{int} representation\\
\typ{\%f} for \typ{float} representation
\begin{lstlisting}