diff --git a/docs/usage.rst b/docs/usage.rst
index 46d3af9f57da02657b67401d887bd8f38a7c3d80..f06750d8a81de50aec5d1f2838c36ae67406f6af 100644
--- a/docs/usage.rst
+++ b/docs/usage.rst
@@ -1,7 +1,8 @@
 How this does work?
 ===================
 
-.. note:: This is about fixed length data time series.
+.. note:: This is about fixed length data time series. For the page about
+    time series, see the :ref:`proper page<Variable length>`.
 
 Data is stored in so called chunks. A chunk's last page can be actively appended to, or a chunk
 is immutable.
diff --git a/docs/varlen.rst b/docs/varlen.rst
index 7577246e11be402c22c5d5f815381fe782e27932..5e19bc39b9c316e36d903db2a0e4a49a878fc6b3 100644
--- a/docs/varlen.rst
+++ b/docs/varlen.rst
@@ -1,6 +1,9 @@
 Variable length series
 ======================
 
+.. _Variable length:
+
+
 .. versionadded:: 0.5
 
 How does it work?
diff --git a/tempsdb/varlen.pyx b/tempsdb/varlen.pyx
index e4eed496cc75bc36c92571bc58c7fd00436af29f..c218bf4bd027fdd3ad66cac0654b7b88c7a5b3af 100644
--- a/tempsdb/varlen.pyx
+++ b/tempsdb/varlen.pyx
@@ -252,8 +252,9 @@ cdef class VarlenEntry:
         Close this object and release all the references.
         
         It is not necessary to call, since the destructor will call this.
-        .. warning:: Do not let your VarlenEntries outlive the iterator itself!
-            It will be impossible to close the iterator.
+        
+        Do not let your VarlenEntries outlive the iterator itself!
+        It will be impossible to close the iterator.
         """
         cdef Chunk chunk
         if self.chunks is None: