diff --git a/purescript-bridge.cabal b/purescript-bridge.cabal
--- a/purescript-bridge.cabal
+++ b/purescript-bridge.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.3.0.4
+version:             0.3.0.5
 
 -- A short (one-line) description of the package.
 synopsis:            Generate PureScript data types from Haskell data types
diff --git a/src/Language/PureScript/Bridge.hs b/src/Language/PureScript/Bridge.hs
--- a/src/Language/PureScript/Bridge.hs
+++ b/src/Language/PureScript/Bridge.hs
@@ -47,6 +47,13 @@
 --
 --   Find examples for implementing your own type bridges in: "Language.PureScript.Bridge.Primitives".
 --
+--  == Result:
+--   'writePSTypes' will write out PureScript modules to the given path, mirroring the hierarchy of the Haskell modules
+--   the types came from. In addition a list of needed PS packages is printed to the console.
+--
+--   The list of needed packages is retrieved from the bridged 'TypeInfo' data, so make sure you set 'typePackage' correctly
+--   in your own bridges, in order for this feature to be useful.
+--
 --  == Real world usage example:
 --   A real world use case of this library can be found <https://github.com/gonimo/gonimo-back/blob/master/src/MkFrontendTypes.hs here>.
 --
