diff --git a/compose-ltr.cabal b/compose-ltr.cabal
--- a/compose-ltr.cabal
+++ b/compose-ltr.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                compose-ltr
-version:             0.1.1
+version:             0.1.2
 synopsis:            More intuitive, left-to-right function composition.
 description:         More intuitive, left-to-right function composition.
 -- description:
diff --git a/src/Data/Function/Compose/LeftToRight.hs b/src/Data/Function/Compose/LeftToRight.hs
--- a/src/Data/Function/Compose/LeftToRight.hs
+++ b/src/Data/Function/Compose/LeftToRight.hs
@@ -7,7 +7,7 @@
 infixl 0 $>
 
 (<$) = ($)
-infixl 1 <$
+infixr 1 <$
 
 (<.) = (.)
-infixl 9 <.
+infixr 9 <.
