diff options
Diffstat (limited to 'html-test/src/Hash.hs')
-rw-r--r-- | html-test/src/Hash.hs | 4 |
1 files changed, 2 insertions, 2 deletions
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. |