diff --git a/composition-prelude.cabal b/composition-prelude.cabal
--- a/composition-prelude.cabal
+++ b/composition-prelude.cabal
@@ -1,6 +1,6 @@
 cabal-version: 1.18
 name: composition-prelude
-version: 1.5.0.6
+version: 1.5.0.7
 license: BSD3
 license-file: LICENSE
 copyright: Copyright: (c) 2017-2018 Vanessa McHale
@@ -9,7 +9,7 @@
 bug-reports: https://hub.darcs.net/vmchale/composition-prelude/issues
 synopsis: Higher-order function combinators
 description:
-    Replacement for `composition` or `composition-exta`, exporting everything in one module.
+    Replacement for `composition` or `composition-extra`, exporting everything in one module.
 category: Control, Data
 build-type: Simple
 extra-doc-files: README.md
diff --git a/src/Control/Composition.hs b/src/Control/Composition.hs
--- a/src/Control/Composition.hs
+++ b/src/Control/Composition.hs
@@ -21,10 +21,9 @@
     , thread
     -- * Tuple helpers
     , both
-    -- * Functor helpers
-    , (<&>)
     -- * Reëxports from base
     , (&)
+    , (<&>)
     , fix
     , on
     ) where
@@ -102,7 +101,7 @@
   #-}
 
 {-# RULES
-    "thread/fmap" forall f fs. thread (f:fs) = f . thread fs
+    "thread" forall f fs. thread (f:fs) = f . thread fs
   #-}
 
 thread :: [a -> a] -> a -> a
