diff --git a/Readme.md b/Readme.md
--- a/Readme.md
+++ b/Readme.md
@@ -143,7 +143,7 @@
 >>> div_ (Just (div_ "a"))
 <div><div>a</div></div>
 
->>> div_ (if True then Nothing else div_ "b")
+>>> div_ (if True then Nothing else Just (div_ "b"))
 <div></div>
 
 >>> div_ (if True then Left (div_ "a") else Right "b")
@@ -188,7 +188,8 @@
 AppendSymbol. Afterwards we reify the Symbols with symbolVal which
 will be embedded in the executable as Addr#. All this happens at
 compile time. At runtime we do only generate the content and append
-Builders.
+Builders. Because all functions from this library get inlined, we'll
+automatically profit from future optimizations in ByteString.Builder.
 
 For example, if you write:
 
diff --git a/type-of-html.cabal b/type-of-html.cabal
--- a/type-of-html.cabal
+++ b/type-of-html.cabal
@@ -1,5 +1,5 @@
 name:                 type-of-html
-version:              1.3.0.0
+version:              1.3.0.1
 synopsis:             High performance type driven html generation.
 description:          This library makes most invalid html documents compile time errors and uses advanced type level features to realise compile time computations.
 license:              BSD3
