projects
/
matthijs
/
master-project
/
report.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
060fd97
)
Remove an extra backslash.
author
Matthijs Kooijman
<matthijs@stdin.nl>
Thu, 12 Nov 2009 14:12:40 +0000
(15:12 +0100)
committer
Matthijs Kooijman
<matthijs@stdin.nl>
Thu, 12 Nov 2009 14:12:40 +0000
(15:12 +0100)
This screws up syntax highlighting, but at least gives proper output.
Chapters/Future.tex
patch
|
blob
|
history
diff --git
a/Chapters/Future.tex
b/Chapters/Future.tex
index 9495922aa6aeaa8e10b32e1b7342d9b4a7d38af4..c5c4b2244617958495e74ad30f56761481a0b790 100644
(file)
--- a/
Chapters/Future.tex
+++ b/
Chapters/Future.tex
@@
-104,7
+104,7
@@
but can be called explicitely by a hardware description.
f1 >> f2 = f1 >>= \_ -> f2
(>>=) :: Stateful s1 r1 -> (r1 -> Stateful s2 r2) -> Stateful (s1, s2) r2
-f1 >>= f2 = \
\
(s1, s2) -> let (s1', r1) = f1 s1
+f1 >>= f2 = \(s1, s2) -> let (s1', r1) = f1 s1
(s2', r2) = f2 r1 s2
in ((s1', s2'), r2)