We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca91ad commit 60b4f39Copy full SHA for 60b4f39
html-test/Main.hs
@@ -2,6 +2,7 @@
2
3
4
import Data.Char
5
+import Data.Function (on)
6
7
import System.Environment
8
import System.FilePath
@@ -15,7 +16,7 @@ checkConfig = CheckConfig
15
16
{ ccfgRead = parseXml
17
, ccfgClean = stripIfRequired
18
, ccfgDump = dumpXml
- , ccfgEqual = (==)
19
+ , ccfgEqual = (==) `on` dumpXml
20
}
21
22
hypsrc-test/Main.hs
@@ -3,6 +3,7 @@
import Data.List
9
@@ -16,7 +17,7 @@ checkConfig = CheckConfig
, ccfgClean = \_ -> strip
where
23
strip = stripAnchors' . stripLinks' . stripFooter
0 commit comments