We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e266dc commit 7ed9cf5Copy full SHA for 7ed9cf5
src/Distribution/Server/Features/PackageRank.hs
@@ -1,4 +1,4 @@
1
-{-# LANGUAGE TupleSections #-}
+{-# LANGUAGE TupleSections, BangPatterns #-}
2
3
-- TODO change the module name probably Distribution.Server.Features.PackageList.PackageRank
4
@@ -42,8 +42,8 @@ import System.FilePath ( isExtensionOf )
42
import qualified System.IO as SIO
43
44
data Scorer = Scorer
45
- { maximumS :: Float
46
- , score :: Float
+ { maximumS :: !Float
+ , score :: !Float
47
}
48
deriving Show
49
0 commit comments