tpetricek / tomasp.net

Source code for my web site and blog - yet another remake!
26 stars 19 forks source link

Typo in Computation Zoo paper #13

Open xuanduc987 opened 7 years ago

xuanduc987 commented 7 years ago

Page 2: reserch -> research

We believe that software artifacts in programming language research matter [10], so all code can be run at: http://tryjoinads.org/computations. The syntax for applicative functors is a reserch extension; other examples require F# 2.0.

Page 5: AsyncSeqInner definition seems wrong image compares with definition from http://tomasp.net/blog/async-sequences.aspx

type AsyncSeq<'T> = Async<AsyncSeqInner<'T>> 
and AsyncSeqInner<'T> =
  | Nil
  | Cons of 'T * AsyncSeq<'T>