diff --git a/reactive.cabal b/reactive.cabal
--- a/reactive.cabal
+++ b/reactive.cabal
@@ -1,5 +1,5 @@
 Name:                reactive
-Version:             0.10.1
+Version:             0.10.2
 Synopsis:            Simple foundation for functional reactive programming
 Category:            reactivity, FRP
 Description:
diff --git a/src/FRP/Reactive/Behavior.hs b/src/FRP/Reactive/Behavior.hs
--- a/src/FRP/Reactive/Behavior.hs
+++ b/src/FRP/Reactive/Behavior.hs
@@ -119,7 +119,7 @@
 -- 'snapshotWith'.  Take careful note of the order of arguments and
 -- results.
 -- 
--- > snapshot :: Event a -> Behavior b -> Event (a,b)
+-- > snapshot :: Behavior b -> Event a -> Event (a,b)
 snapshot :: Ord t => BehaviorI t b -> EventI t a -> EventI t (a,b)
 snapshot = snapshotWith (,)
 
@@ -133,7 +133,7 @@
 
 -- | Like 'snapshot' but discarding event data (often @a@ is '()').
 -- 
--- > snapshot_ :: Event a -> Behavior b -> Event b
+-- > snapshot_ :: Behavior b -> Event a -> Event b
 snapshot_ :: Ord t => BehaviorI t b -> EventI t a -> EventI t b
 snapshot_ = snapshotWith (flip const)
 
