diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for haskell-lsp
 
+## 0.20.0.1
+
+* Fix Haddock generation syntax error
+
 ## 0.20.0.0
 
 * Don't log errors for '$/' notifications (@jinwoo)
diff --git a/haskell-lsp.cabal b/haskell-lsp.cabal
--- a/haskell-lsp.cabal
+++ b/haskell-lsp.cabal
@@ -1,5 +1,5 @@
 name:                haskell-lsp
-version:             0.20.0.0
+version:             0.20.0.1
 synopsis:            Haskell library for the Microsoft Language Server Protocol
 
 description:         An implementation of the types, and basic message server to
diff --git a/src/Language/Haskell/LSP/Core.hs b/src/Language/Haskell/LSP/Core.hs
--- a/src/Language/Haskell/LSP/Core.hs
+++ b/src/Language/Haskell/LSP/Core.hs
@@ -422,7 +422,7 @@
           case mh of
             Just h -> h req
             Nothing
-              -- $/ notifications should/could be ignored by server.
+              -- '$/' notifications should/could be ignored by server.
               -- Don't log errors in that case.
               -- See https://microsoft.github.io/language-server-protocol/specifications/specification-current/#-notifications-and-requests.
               | isOptionalNotification req' -> return ()
@@ -1031,12 +1031,12 @@
         resSendResponse ctx $ NotPublishDiagnostics
           $ J.NotificationMessage "2.0" J.TextDocumentPublishDiagnostics params
 
--- |=====================================================================
+-- =====================================================================
 --
 --  utility
 
 
--- |
+-- 
 --  Logger
 --
 setupLogger :: Maybe FilePath -> [String] -> Priority -> IO ()
