aboutsummaryrefslogtreecommitdiff
path: root/html-test
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-03-11 08:50:42 +0000
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-03-11 09:41:09 +0000
commit8f71c6f26eb5b36e5a1ca253b8c8ffdca75849d8 (patch)
treed328288ba36b6eeeeac7a623c59cfd40fd7e0dd2 /html-test
parentdd05c5cb8a21113d7e8ee63ffc9bf5e13ced4cac (diff)
Fix up some whitespace
Diffstat (limited to 'html-test')
-rw-r--r--html-test/ref/Hash.html2
-rw-r--r--html-test/src/Hash.hs4
2 files changed, 3 insertions, 3 deletions
diff --git a/html-test/ref/Hash.html b/html-test/ref/Hash.html
index c88715cf..eff422f7 100644
--- a/html-test/ref/Hash.html
+++ b/html-test/ref/Hash.html
@@ -72,7 +72,7 @@ window.onload = function () {pageLoad();setSynopsis("mini_Hash.html");};
>Description</p
><div class="doc"
><p
- >Implementation of fixed-size hash tables, with a type
+ >Implementation of fixed-size hash tables, with a type
class for constructing hash values for structured types.</p
></div
></div
diff --git a/html-test/src/Hash.hs b/html-test/src/Hash.hs
index 343b69e9..1eb8af5b 100644
--- a/html-test/src/Hash.hs
+++ b/html-test/src/Hash.hs
@@ -1,5 +1,5 @@
{- |
- Implementation of fixed-size hash tables, with a type
+ Implementation of fixed-size hash tables, with a type
class for constructing hash values for structured types.
-}
module Hash (
@@ -30,7 +30,7 @@ insert = undefined
-- | Looks up a key in the hash table, returns @'Just' val@ if the key
-- was found, or 'Nothing' otherwise.
-lookup :: Hash key => key -> IO (Maybe val)
+lookup :: Hash key => key -> IO (Maybe val)
lookup = undefined
-- | A class of types which can be hashed.