Browse Source

Fixed the feed/bind constraint in the docs.

Paul Downen 13 years ago
parent
commit
90843a51cd
1 changed files with 1 additions and 1 deletions
  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