diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -2,6 +2,10 @@
 
 ## [Unreleased]
 
+## [0.1.3.16] - 2021-02-16
+### Fixed
+- Bad comment in GB parser.
+
 ## [0.1.3.15] - 2021-02-16
 ### Fixed
 - Unknown fields in GB.
diff --git a/cobot-io.cabal b/cobot-io.cabal
--- a/cobot-io.cabal
+++ b/cobot-io.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 41de9b4b3a1a9916fe78ee831e4e9811e27725529c468f9b43d3378b25a5bc5b
+-- hash: 7ba9dfa6aa8de04faf5d4aa77f0afaea9f338622fe927072726a1dc5c8178f52
 
 name:           cobot-io
-version:        0.1.3.15
+version:        0.1.3.16
 synopsis:       Biological data file formats and IO
 description:    Please see the README on GitHub at <https://github.com/biocad/cobot-io#readme>
 category:       Bio
diff --git a/src/Bio/GB/Parser.hs b/src/Bio/GB/Parser.hs
--- a/src/Bio/GB/Parser.hs
+++ b/src/Bio/GB/Parser.hs
@@ -105,8 +105,8 @@
 --------------------------------------------------------------------------------
 
 featuresP :: Parser [(Feature, Range)]
-featuresP =  manyTill (textWithSpacesP <* eolSpaceP) (string "FEATURES") *> space
-          -- ^ skip unknown fields and stop on line with "FEATURES"
+featuresP = -- skip unknown fields and stop on line with "FEATURES" 
+          manyTill (textWithSpacesP <* eolSpaceP) (string "FEATURES") *> space
           *> textWithSpacesP <* eolSpaceP
           *> many1' featureP
 
