diff options
Diffstat (limited to 'html-test')
| -rw-r--r-- | html-test/ref/Hash.html | 2 | ||||
| -rw-r--r-- | html-test/src/Hash.hs | 4 | 
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.  | 
