diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for generic-storable-plugin
 
+## 0.2.3.3  -- 2020-12-05
+
+* Put a comma in a wrong place.
+
 ## 0.2.3.2  -- 2020-12-04
 
 * Compiler marked as pure.
diff --git a/derive-storable-plugin.cabal b/derive-storable-plugin.cabal
--- a/derive-storable-plugin.cabal
+++ b/derive-storable-plugin.cabal
@@ -2,7 +2,7 @@
 -- further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                derive-storable-plugin
-version:             0.2.3.2
+version:             0.2.3.3
 synopsis:            GHC core plugin supporting the derive-storable package.
 description:         The package helps derive-storable package in forcing compile time evaluation of
                      sizes, alignments and offsets.
diff --git a/src/Foreign/Storable/Generic/Plugin.hs b/src/Foreign/Storable/Generic/Plugin.hs
--- a/src/Foreign/Storable/Generic/Plugin.hs
+++ b/src/Foreign/Storable/Generic/Plugin.hs
@@ -32,9 +32,9 @@
 -- | The plugin itself.
 plugin :: Plugin
 plugin = defaultPlugin {
-  installCoreToDos = install,
+    installCoreToDos = install
 #if MIN_VERSION_GLASGOW_HASKELL(8,6,1,0)
-  pluginRecompile = \_ -> pure NoForceRecompile
+  , pluginRecompile = \_ -> pure NoForceRecompile
 #endif
   }
 
