From 9a8de78a0daaae56ddf28e7c497b88d98b9bb4f7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Fri, 11 Dec 2020 23:56:18 +0100
Subject: [PATCH] fixed

---
 docs/usage.rst     | 3 ++-
 docs/varlen.rst    | 3 +++
 tempsdb/varlen.pyx | 5 +++--
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/docs/usage.rst b/docs/usage.rst
index 46d3af9..f06750d 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 7577246..5e19bc3 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 e4eed49..c218bf4 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:
-- 
GitLab