From ab7c5a1733b394af43035bdcf844b91fd7756dd9 Mon Sep 17 00:00:00 2001 From: Koudai Aono Date: Thu, 10 Jul 2025 01:50:55 +0900 Subject: [PATCH] docs/library/btree: Fix method links to explicitly specify class. So they don't clash with other potential references. Signed-off-by: Koudai Aono --- docs/library/btree.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/library/btree.rst b/docs/library/btree.rst index 9d1dcf1110..5746695511 100644 --- a/docs/library/btree.rst +++ b/docs/library/btree.rst @@ -151,10 +151,10 @@ Constants .. data:: INCL - A flag for `keys()`, `values()`, `items()` methods to specify that + A flag for :meth:`btree.keys`, :meth:`btree.values`, :meth:`btree.items` methods to specify that scanning should be inclusive of the end key. .. data:: DESC - A flag for `keys()`, `values()`, `items()` methods to specify that + A flag for :meth:`btree.keys`, :meth:`btree.values`, :meth:`btree.items` methods to specify that scanning should be in descending direction of keys.