diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@
 
 ## Bugs
 
-Probably. The project is hosted at https://bitbucket.org/tdammers/yeshql, feel
+Probably. The project is hosted at https://github.com/tdammers/yeshql, feel
 free to comment there or send a message to tdammers@gmail.com if you find any.
 
 ## Something about the name
diff --git a/src/Database/YeshQL.hs b/src/Database/YeshQL.hs
--- a/src/Database/YeshQL.hs
+++ b/src/Database/YeshQL.hs
@@ -40,7 +40,7 @@
 ...will create a top-level function of type:
 
 @
-    insertUser :: IConnection conn => conn -> String -> IO (Maybe Integer)
+    insertUser :: IConnection conn => String -> conn -> IO (Maybe Integer)
 @
 
 Using plain TH, it can also be written as:
@@ -143,8 +143,8 @@
 ...will produce the function:
 
 @
-getUserEx :: IConnection conn => conn -> Integer -> String -> IO [(Integer, String)]
-getUserEx conn id filename =
+getUserEx :: IConnection conn => Integer -> String -> conn -> IO [(Integer, String)]
+getUserEx id filename conn =
     -- ... generated implementation left out
 @
 
diff --git a/yeshql.cabal b/yeshql.cabal
--- a/yeshql.cabal
+++ b/yeshql.cabal
@@ -1,5 +1,5 @@
 name: yeshql
-version: 3.0.1.2
+version: 3.0.1.3
 synopsis: YesQL-style SQL database abstraction
 description: Use quasi-quotations or TemplateHaskell to write SQL in SQL, while
              adding type annotations to turn SQL into well-typed Haskell
