diff --git a/Doc/Tutorial.tex b/Doc/Tutorial.tex index 6463a0c6484..c0a0c6af26d 100644 --- a/Doc/Tutorial.tex +++ b/Doc/Tutorial.tex @@ -489,9 +489,9 @@ \section{Sequences act like strings} \emph{non-overlapping} count: \begin{verbatim} ->>> "AAAA".count("A") +>>> "AAAA".count("AA") 2 ->>> Seq("AAAA").count("A") +>>> Seq("AAAA").count("AA") 2 \end{verbatim}