diff --git a/src/Data/Stream/Typed.hs b/src/Data/Stream/Typed.hs
--- a/src/Data/Stream/Typed.hs
+++ b/src/Data/Stream/Typed.hs
@@ -67,7 +67,7 @@
 
 Now you may be able to get this speed out of ordinary lists with some fancy rewrite rules
 (and indeed this Stream library does have a few fancy rewrite rules itself) there more
-theortical advantages that Data.Stream.Stream' could have over lists.
+theortical advantages that 'Data.Stream.Typed.Stream' can have over lists.
 
 Unlike ordinary lists, streams do not store the data directly. They just store a way to generate the data.
 
diff --git a/typed-streams.cabal b/typed-streams.cabal
--- a/typed-streams.cabal
+++ b/typed-streams.cabal
@@ -1,5 +1,5 @@
 name:                 typed-streams
-version:              0.1.0.0
+version:              0.1.0.1
 synopsis:             A stream based replacement for lists
 description:
   This is an (incomplete) stream based replacement for lists, but already includes significant
@@ -17,7 +17,11 @@
 build-type:           Simple
 cabal-version:        >=1.10
 tested-with: GHC == 8.0.2
-bug-reports: https://github.com/clintonmead/generic-enum/issues
+bug-reports: https://github.com/clintonmead/typed-streams/issues
+
+source-repository head
+  type: git
+  location: https://github.com/clintonmead/typed-streams.git
 
 library
   exposed-modules: Data.Stream.Typed, Data.Stream
