diff --git a/reactive-banana.cabal b/reactive-banana.cabal
--- a/reactive-banana.cabal
+++ b/reactive-banana.cabal
@@ -1,5 +1,5 @@
 Name:                reactive-banana
-Version:             0.5.0.0
+Version:             0.5.0.1
 Synopsis:            Practical library for functional reactive programming (FRP).
 Description:         
     Reactive-banana is a practical library for Functional Reactive Programming (FRP).
diff --git a/src/Reactive/Banana/Combinators.hs b/src/Reactive/Banana/Combinators.hs
--- a/src/Reactive/Banana/Combinators.hs
+++ b/src/Reactive/Banana/Combinators.hs
@@ -144,6 +144,8 @@
 collect e = E $ singleton <$> unE e
 
 -- | Emit simultaneous event occurrences.
+-- The first element in the list will be emitted first, and so on.
+--
 -- Up to strictness, we have
 --
 -- > spill . collect = id
@@ -262,7 +264,7 @@
     fromLeft  (Left  a) = Just a
     fromLeft  (Right b) = Nothing
     fromRight (Left  a) = Nothing
-    fromright (Right b) = Just b
+    fromRight (Right b) = Just b
 
 
 -- | Combine simultaneous event occurrences into a single occurrence.
