summaryrefslogtreecommitdiff
path: root/day2/cheatsheet1.tex
diff options
context:
space:
mode:
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 ca1f38a..22289b3 100755
--- a/day2/cheatsheet1.tex
+++ b/day2/cheatsheet1.tex
@@ -134,7 +134,7 @@ In []: s = 'Hello'
In []: p = 'World'
In []: s + p #concatenating two strings
Out[]: 'HelloWorld'
-In []: s * 4 #repeating string for given num of times
+In []: s * 4 #repeat string for given number of times
Out[]: 'HelloHelloHelloHello'
\end{lstlisting}
\subsection{Relational and Logical Operators}