diff options
-rw-r--r-- | girlfriend.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/girlfriend.hs b/girlfriend.hs index 27a87f4..5bf61aa 100644 --- a/girlfriend.hs +++ b/girlfriend.hs @@ -1,6 +1,6 @@ import System.IO main = do - withFile "girlfriend.txt" ReadMode (\handle -> do + withFile "girlfriends.txt" ReadMode (\handle -> do contents <- hGetContents handle putStr contents) |