Parcourir la source

Fixed the feed/bind constraint in the docs.

Paul Downen il y a 13 ans
Parent
commit
90843a51cd
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      doc/Control

+ 1 - 1
doc/Control

@@ -66,7 +66,7 @@ bind(bind(x, f), g) = bind(x, fun(X) -> bind(f X, g) end)
 bind(x, return) = x
 bind(return(x), f) = f x
 
-feed(x, func(f)) = bind(x, f)
+feed(x, suspend(f)) = bind(x, f)
 
 
 Scattering