summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--tests/loc.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index b19e5c6..227441c 100644
--- a/README
+++ b/README
@@ -7,7 +7,7 @@ Motivation:
static typing. Enter Haskell.
If the aim of dwm is to fit in under 2000 lines of C, the aim of
- xmonad is to fit in under 400 lines of Haskell with similar functionality.
+ xmonad is to fit in under 500 lines of Haskell with similar functionality.
Building:
diff --git a/tests/loc.hs b/tests/loc.hs
index cfc9985..7911b9a 100644
--- a/tests/loc.hs
+++ b/tests/loc.hs
@@ -8,7 +8,7 @@ main = do foo <- getContents
putStrLn $ show loc
-- uncomment the following to check for mistakes in isntcomment
-- putStr $ unlines $ actual_loc
- when (loc > 400) $ fail "Too many lines of code!"
+ when (loc > 500) $ fail "Too many lines of code!"
isntcomment "" = False
isntcomment ('-':'-':_) = False