diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,11 @@
 Brick changelog
 ---------------
 
+0.26.1
+------
+
+ * Fixed haddock for listHandleEventVi.
+
 0.26
 ----
 
diff --git a/brick.cabal b/brick.cabal
--- a/brick.cabal
+++ b/brick.cabal
@@ -1,5 +1,5 @@
 name:                brick
-version:             0.26
+version:             0.26.1
 synopsis:            A declarative terminal user interface library
 description:
   Write terminal applications painlessly with 'brick'! You write an
diff --git a/src/Brick/Widgets/List.hs b/src/Brick/Widgets/List.hs
--- a/src/Brick/Widgets/List.hs
+++ b/src/Brick/Widgets/List.hs
@@ -99,10 +99,11 @@
         EvKey KPageUp [] -> listMovePageUp theList
         _ -> return theList
 
--- | Enable list movement with the vi keys with a fallback if none match.
--- Use (handleListEventVi handleListEvent) in place of handleListEvent to add
--- the vi keys bindings to the standard ones.
--- Movements handled:
+-- | Enable list movement with the vi keys with a fallback if none
+-- match. Use (handleListEventVi handleListEvent) in place of
+-- handleListEvent to add the vi keys bindings to the standard ones.
+-- Movements handled include:
+--
 -- * Up             (k)
 -- * Down           (j)
 -- * Page Up        (Ctrl-b)
