diff --git a/birds-of-paradise.cabal b/birds-of-paradise.cabal
--- a/birds-of-paradise.cabal
+++ b/birds-of-paradise.cabal
@@ -4,7 +4,7 @@
 -- http://haskell.org/cabal/users-guide/
 
 name:                birds-of-paradise
-version:             0.2.1.1
+version:             0.2.1.2
 synopsis:            Birds of Paradise
 description:         Birds of Paradise is yet another SK combinator library.
 homepage:            https://github.com/cutsea110/birds-of-paradise.git
@@ -21,7 +21,7 @@
   exposed-modules:     Data.Function.Combinator.Birds
   -- other-modules:
   -- other-extensions:
-  build-depends:       base >=4.12.0.0 && <4.16
+  build-depends:       base >=4.12.0.0 && <4.19
   hs-source-dirs:      src
   default-language:    Haskell2010
   ghc-options:         -Wall
@@ -31,4 +31,4 @@
   type:                exitcode-stdio-1.0
   hs-source-dirs:      test
   main-is:             MyLibTest.hs
-  build-depends:       base >=4.12.0.0 && <4.16
+  build-depends:       base >=4.12.0.0
diff --git a/src/Data/Function/Combinator/Birds.hs b/src/Data/Function/Combinator/Birds.hs
--- a/src/Data/Function/Combinator/Birds.hs
+++ b/src/Data/Function/Combinator/Birds.hs
@@ -70,7 +70,7 @@
 
 -- | B3
 becard :: (c -> d) -> (b -> c) -> (a -> b) -> a -> d
-becard f g h x = f (g ( h x))
+becard f g h x = f (g (h x))
 
 -- | C
 -- Haskell 'flip'
