From be6b43b14cbda3140ed05fcbaff0d3839cf18e48 Mon Sep 17 00:00:00 2001
From: Jesse Rosenthal <jrosenthal@jhu.edu>
Date: Sun, 10 Dec 2017 15:48:02 -0500
Subject: [PATCH] Fix comment that confused compiler.

---
 src/Text/Pandoc/Writers/Powerpoint.hs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/Text/Pandoc/Writers/Powerpoint.hs b/src/Text/Pandoc/Writers/Powerpoint.hs
index f7d5bbc5f..d78833c81 100644
--- a/src/Text/Pandoc/Writers/Powerpoint.hs
+++ b/src/Text/Pandoc/Writers/Powerpoint.hs
@@ -1658,8 +1658,6 @@ getContentType fp
   | "ppt" : "theme" : f : [] <- splitDirectories fp
   , (_, ".xml") <- splitExtension f =
       Just $ noPresML ++ ".theme+xml"
-  -- | "ppt" : "slideLayouts" : f : [] <- splitDirectories fp
-  -- , (_, ".xml") <- splitExtension f =
   | "ppt" : "slideLayouts" : _ : [] <- splitDirectories fp=
       Just $ presML ++ ".slideLayout+xml"
   | otherwise = Nothing