diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for quotet
 
+## 0.0.0.1 -- 2021-07-08
+
+* Documentation fixes.
+
 ## 0.0.0.0 -- 2021-07-08
 
 * First version. Released on an unsuspecting world.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -4,4 +4,4 @@
 
 A monad transformer for the [`Quote`](https://hackage.haskell.org/package/template-haskell/docs/Language-Haskell-TH.html#t:Quote) type class from template-haskell, in spirit of the ["Overloaded Quotations" proposal](https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0246-overloaded-bracket.rst) implemented in GHC 9.0.
 
-See [the haddocks](https://hackage.haskell.org/package/quotet/docs/Control/Monad/Quote.html) for documentation.
+See [the haddocks](https://hackage.haskell.org/package/quotet/docs/Control-Monad-Quote.html) for documentation.
diff --git a/quotet.cabal b/quotet.cabal
--- a/quotet.cabal
+++ b/quotet.cabal
@@ -1,11 +1,11 @@
 cabal-version: 2.4
 name: quotet
-version: 0.0.0.0
+version: 0.0.0.1
 
 synopsis: Monad transformer for Quote from template-haskell
 description:
-  A monad transformer for the @Quote@ type class from template-haskell, in spirit of the ["Overloaded Quotations" proposal](https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0246-overloaded-bracket.rst) proposal implemented in GHC 9.0.
-category: String, Text, QuasiQuotes
+  A monad transformer for the @Quote@ type class from template-haskell, in spirit of the [Overloaded Quotations proposal](https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0246-overloaded-bracket.rst) proposal implemented in GHC 9.0.
+category: Template Haskell
 
 homepage: https://github.com/amesgen/quotet
 bug-reports: https://github.com/amesgen/quotet/issues
diff --git a/src/Control/Monad/Quote.hs b/src/Control/Monad/Quote.hs
--- a/src/Control/Monad/Quote.hs
+++ b/src/Control/Monad/Quote.hs
@@ -3,11 +3,11 @@
 -- The ["Overloaded Quotations" proposal](https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0246-overloaded-bracket.rst)
 -- has been implemented in GHC 9.0, and generalizes the type of quotation brackets from
 --
--- @[| \x -> x + 1 |] ::            'Language.Haskell.TH.Q' 'Language.Haskell.TH.Exp'@
+-- @[| \\x -> x + 1 |] ::            'Language.Haskell.TH.Q' 'Language.Haskell.TH.Exp'@
 --
 -- to
 --
--- @[| \x -> x + 1 |] :: 'Quote' m => m 'Language.Haskell.TH.Exp'@
+-- @[| \\x -> x + 1 |] :: 'Quote' m => m 'Language.Haskell.TH.Exp'@
 --
 -- where the 'Quote' type class only has a single function, 'newName', in order to generate
 -- fresh 'Language.Haskell.TH.Name's.
