diff --git a/Data/Conduit/Combinators.hs b/Data/Conduit/Combinators.hs
--- a/Data/Conduit/Combinators.hs
+++ b/Data/Conduit/Combinators.hs
@@ -405,7 +405,7 @@
 -- | Read all data from the given file.
 --
 -- This function automatically opens and closes the file handle, and ensures
--- exception safety via @MonadResource. It works for all instances of @IOData@,
+-- exception safety via @MonadResource@. It works for all instances of @IOData@,
 -- including @ByteString@ and @Text@.
 --
 -- Since 1.0.0
@@ -1212,7 +1212,7 @@
 -- | Write all data to the given file.
 --
 -- This function automatically opens and closes the file handle, and ensures
--- exception safety via @MonadResource. It works for all instances of @IOData@,
+-- exception safety via @MonadResource@. It works for all instances of @IOData@,
 -- including @ByteString@ and @Text@.
 --
 -- Since 1.0.0
@@ -1855,7 +1855,7 @@
 -- | Split a stream of arbitrarily-chunked data, based on a predicate
 -- on elements.  Elements that satisfy the predicate will cause chunks
 -- to be split, and aren't included in these output chunks.  Note
--- that, if you have unknown/untrusted input, this function is
+-- that, if you have unknown or untrusted input, this function is
 -- /unsafe/, since it would allow an attacker to form chunks of
 -- massive length and exhaust memory.
 splitOnUnboundedE, splitOnUnboundedEC
@@ -1880,7 +1880,7 @@
 
 -- | Convert a stream of arbitrarily-chunked textual data into a stream of data
 -- where each chunk represents a single line. Note that, if you have
--- unknown/untrusted input, this function is /unsafe/, since it would allow an
+-- unknown or untrusted input, this function is /unsafe/, since it would allow an
 -- attacker to form lines of massive length and exhaust memory.
 --
 -- Subject to fusion
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+conduit-combinators
+===================
+
+Commonly used conduit functions, for both chunked and unchunked data
diff --git a/conduit-combinators.cabal b/conduit-combinators.cabal
--- a/conduit-combinators.cabal
+++ b/conduit-combinators.cabal
@@ -1,5 +1,5 @@
 name:                conduit-combinators
-version:             0.3.0.4
+version:             0.3.0.5
 synopsis:            Commonly used conduit functions, for both chunked and unchunked data
 description:         Provides a replacement for Data.Conduit.List, as well as a convenient Conduit module.
 homepage:            https://github.com/fpco/conduit-combinators
@@ -10,7 +10,7 @@
 category:            Data, Conduit
 build-type:          Simple
 cabal-version:       >=1.8
-extra-source-files:  test/subdir/dummyfile.txt fusion-macros.h ChangeLog.md
+extra-source-files:  test/subdir/dummyfile.txt fusion-macros.h ChangeLog.md README.md
 
 library
   exposed-modules:     Conduit
