From acc98c5cf3dde51174715f423095328bbeab8f85 Mon Sep 17 00:00:00 2001 From: Matus Tejiscak Date: Fri, 9 Aug 2013 08:18:00 +0200 Subject: [PATCH] Fix a typo in the tutorial. --- tutorial/typesfuns.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/typesfuns.tex b/tutorial/typesfuns.tex index dd92c1be7d..cd45b2d8d7 100644 --- a/tutorial/typesfuns.tex +++ b/tutorial/typesfuns.tex @@ -1026,7 +1026,7 @@ \subsubsection*{List comprehensions} The \texttt{[a..b]} notation is another shorthand which builds a list of numbers between \texttt{a} and \texttt{b}. Alternatively \texttt{[a,b..c]} builds a list of numbers between \texttt{a} and \texttt{c} with the increment -specified by the difference between \texttt{a} and \texttt{c}. This works for +specified by the difference between \texttt{a} and \texttt{b}. This works for any numeric type, using the \texttt{count} function from the prelude. \subsubsection*{\texttt{case} expressions}