diff --git a/docs/config.rst b/docs/config.rst
index fcfb5ab..90eef7a 100644
--- a/docs/config.rst
+++ b/docs/config.rst
@@ -157,6 +157,15 @@ CalDAV and CardDAV
Google
++++++
+Vdirsyncer supports synchronization with Google calendars with the restriction
+that ``VTODO`` files are rejected by the server.
+
+Synchronization with Google contacts is less reliable due to negligence of
+Google's CardDAV API. **Google's CardDAV implementation is allegedly a disaster
+in terms of data safety**. See `this blog post
+`_ for the details. Always back
+up your data.
+
At first run you will be asked to authorize application for google account
access.
diff --git a/vdirsyncer/storage/google.py b/vdirsyncer/storage/google.py
index 8e3d3ec..c2464e0 100644
--- a/vdirsyncer/storage/google.py
+++ b/vdirsyncer/storage/google.py
@@ -152,10 +152,6 @@ class GoogleCalendarStorage(dav.CalDAVStorage):
class GoogleContactsStorage(dav.CardDAVStorage):
__doc__ = '''Google contacts.
- .. note:: Google's CardDAV implementation is allegedly a disaster in terms
- of data safety. See `this blog post
- `_ for the details.
- Always back up your data.
''' + GOOGLE_PARAMS_DOCS
class session_class(GoogleSession):