diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,11 +1,13 @@
 # goggles
 
-<img src="https://raw.githubusercontent.com/ocramz/goggles/master/goggles1.png" width="300" >
-
 [![Build Status](https://travis-ci.org/ocramz/goggles.png)](https://travis-ci.org/ocramz/goggles)
 
-Interface to Google Cloud APIs
+Haskell Interface to the Google Cloud APIs
 
+
+## Instructions and examples
+
+All instructions and API documentation are available as Haddocks in the main module, `Network.Goggles`
 
 
 ### Inspiration
diff --git a/goggles.cabal b/goggles.cabal
--- a/goggles.cabal
+++ b/goggles.cabal
@@ -1,5 +1,5 @@
 name:                goggles
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            Interface to Google Cloud APIs
 description:         High-level, extensible interface to Google Cloud APIs. 
 homepage:            https://github.com/ocramz/goggles
@@ -11,7 +11,6 @@
 category:            Network
 build-type:          Simple
 extra-source-files:  README.md
-                     goggles1.png
 cabal-version:       >=1.10
 tested-with:         GHC == 8.2
 
diff --git a/goggles1.png b/goggles1.png
deleted file mode 100644
Binary files a/goggles1.png and /dev/null differ
diff --git a/src/Network/Goggles.hs b/src/Network/Goggles.hs
--- a/src/Network/Goggles.hs
+++ b/src/Network/Goggles.hs
@@ -4,10 +4,8 @@
 
 From now on, we'll assume the user has such credentials and is able to load them alongside this library.
 
-The examples require the following declarations (which in turn mean that the @req@ and @bytestring@ libraries are imported by the user's project):
+The examples require the following declarations (which in turn mean that the @req@ and @bytestring@ libraries are imported by the user's project). You will also need the @OverloadedStrings@ language extension :
 
-> {-# language OverloadedStrings #-}
->
 > import qualified Data.ByteString.Lazy as LB
 > import Network.HTTP.Req (responseBody)
 > import Network.Goggles
