this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add doctests.hs where the cabal file expects it

+10 -4
-4
test/Tests.hs
··· 1 - module Main where 2 - 3 - main :: IO () 4 - main = pure ()
+10
test/doctests.hs
··· 1 + import Test.DocTest 2 + 3 + main :: IO () 4 + main = doctest 5 + [ "-isrc" 6 + , "src/Lets/GetSetLens.hs" 7 + , "src/Lets/Lens.hs" 8 + , "src/Lets/OpticPolyLens.hs" 9 + , "src/Lets/StoreLens.hs" 10 + ]