diff --git a/README.md b/README.md
index 6f6c407617adb6a32ae2330062c1d3c11a00df5c..71277c375350026ecaadbade3ca5005a2b27d033 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,9 @@ A **magical** AMQP client, that uses **heavy sorcery** to achieve speeds that ot
 
 tl;dr - [this](coolamqp/framing/definitions.py) is **machine-generated** compile-time.
 [this](coolamqp/framing/compilation/content_property.py) **generates classes run-time**,
-and there are memoryviews **_everywhere_**.
+and there are memoryviews **_everywhere_**. 
+
+This is borderline absurd.
 
 
 The project is actively maintained and used in a commercial project. Tests can run
diff --git a/coolamqp/objects.py b/coolamqp/objects.py
index 62809bb171d915ccab2775bcb39d3a24e0c98b3c..d02c7b6ed9f55deb78b4a87c0c9e640cba064ee0 100644
--- a/coolamqp/objects.py
+++ b/coolamqp/objects.py
@@ -34,9 +34,7 @@ class Message(object):
         Please take care with passing empty bodies, as py-amqp has some failure on it.
 
         :param body: stream of octets
-        :type body: str (py2) or bytes (py3) or ...
-                    a list of memoryviews, if you find the right option. It's disabled by default.
-                    check coolamqp.attaches.consumer.Consumer() for details
+        :type body: str (py2) or bytes (py3)
         :param properties: AMQP properties to be sent along.
                            default is 'no properties at all'
                            You can pass a dict - it will be passed to MessageProperties,
@@ -44,7 +42,7 @@ class Message(object):
         :type properties: MessageProperties instance, None or a dict
         """
         if isinstance(body, six.text_type):
-            raise TypeError('body cannot be a text type!')
+            raise TypeError(u'body cannot be a text type!')
 
         self.body = body
 
diff --git a/setup.py b/setup.py
index b9fee132178924f08331e6a2b204cfbe2426e92a..dfc890aac4bb149526a9e4b226fea348dc5ea775 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup
 
 setup(name=u'CoolAMQP',
       version='0.8',
-      description=u'AMQP client with sane reconnects',
+      description=u'The fastest AMQP client',
       author=u'DMS Serwis s.c.',
       author_email=u'piotrm@smok.co',
       url=u'https://github.com/smok-serwis/coolamqp',