diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # recursion
 
+## 2.2.4.3
+
+* Fix documentation
+
 ## 2.2.4.2
 
 * Drop support for Eta
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Vanessa McHale (c) 2018-2019
+Copyright Vanessa McHale (c) 2018-2020
 
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 
diff --git a/recursion.cabal b/recursion.cabal
--- a/recursion.cabal
+++ b/recursion.cabal
@@ -1,9 +1,9 @@
 cabal-version:      1.18
 name:               recursion
-version:            2.2.4.2
+version:            2.2.4.3
 license:            BSD3
 license-file:       LICENSE
-copyright:          Copyright: (c) 2018-2019 Vanessa McHale
+copyright:          Copyright: (c) 2018-2020 Vanessa McHale
 maintainer:         vamchale@gmail.com
 author:             Vanessa McHale
 bug-reports:        https://hub.darcs.net/vmchale/recursion/issues
diff --git a/src/Control/Recursion.hs b/src/Control/Recursion.hs
--- a/src/Control/Recursion.hs
+++ b/src/Control/Recursion.hs
@@ -191,7 +191,7 @@
    "ana/Nu" forall (f :: a -> f a). ana f = Nu f;
       #-}
 
--- | Hylomorphism; fold a structure while buildiung it up.
+-- | Hylomorphism; fold a structure while building it up.
 hylo :: Functor f => (f b -> b) -> (a -> f a) -> a -> b
 hylo f g = h where h = f . fmap h . g
 {-# NOINLINE [0] hylo #-}
