projects
/
matthijs
/
master-project
/
final-presentation.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c04a4d9
)
Fix a typo in the run function.
author
Matthijs Kooijman
<matthijs@stdin.nl>
Mon, 14 Dec 2009 14:04:17 +0000
(15:04 +0100)
committer
Matthijs Kooijman
<matthijs@stdin.nl>
Mon, 14 Dec 2009 14:04:17 +0000
(15:04 +0100)
matthijs/introduction.lhs
patch
|
blob
|
history
diff --git
a/matthijs/introduction.lhs
b/matthijs/introduction.lhs
index 6a55aa26a0b386dc53c280f83dd99124027a732b..2fb28466b0e51fc835ccb41c4735c970ef2fbb93 100644
(file)
--- a/
matthijs/introduction.lhs
+++ b/
matthijs/introduction.lhs
@@
-180,7
+180,7
@@
in (State sum, sum)
\begin{block}{Recursive run function}
run f (i:is) s = let
- (
o, s'
) = f i s
+ (
s', o
) = f i s
in o : (run f is s')
\end{block}