diff --git a/median-stream.cabal b/median-stream.cabal
--- a/median-stream.cabal
+++ b/median-stream.cabal
@@ -1,5 +1,5 @@
 name:                median-stream
-version:             0.6.0.0
+version:             0.7.0.0
 synopsis:            Constant-time queries for the median of a stream of numeric
                      data.
 description:         Uses the two-heap approach to support O(lg n) insertions
diff --git a/src/Data/MedianStream.hs b/src/Data/MedianStream.hs
--- a/src/Data/MedianStream.hs
+++ b/src/Data/MedianStream.hs
@@ -68,7 +68,7 @@
           uncurry (flip MedianStream) $ popAndSwap rh lh a
         | otherwise = MedianStream lh (Heap.insert a rh)
 
--- | Query the MedianStream for the median of the stream of integers
+-- | Query the MedianStream for the median of the stream of numbers
 -- inserted so far.
 -- Complexity: O(1)
 median :: MedianStream a -> Maybe Double
